[all-commits] [llvm/llvm-project] 9124fa: Fix broken HUGE_VALF macro in llvm-c/DataTypes.h

Raphael Isemann via All-commits all-commits at lists.llvm.org
Thu Sep 3 00:51:03 PDT 2020


  Branch: refs/heads/master
  Home:   https://github.com/llvm/llvm-project
  Commit: 9124fa592098d3794d7b31f83a58e40cc469ff0c
      https://github.com/llvm/llvm-project/commit/9124fa592098d3794d7b31f83a58e40cc469ff0c
  Author: Raphael Isemann <teemperor at gmail.com>
  Date:   2020-09-03 (Thu, 03 Sep 2020)

  Changed paths:
    M llvm/include/llvm-c/DataTypes.h

  Log Message:
  -----------
  Fix broken HUGE_VALF macro in llvm-c/DataTypes.h

Commit 3a29393b4709d15069130119cf1d136af4a92d77 removes the cmath/math.h
includes from the DataTypes.h header to speed up parsing. However the
DataTypes.h header was using this header to get the macro `HUGE_VAL` for its own
`HUGE_VALF` macro definition. Now the macro instead just expands into a plain
`HUGE_VAL` token which leads to compiler errors unless `math.h` was previously
included by the including source file. It also leads to compiler warnings with
enabled module builds which point out this inconsistency.

The correct way to fix this seems to be to just remove HUGE_VALF from the
header. llvm-c is not referencing that macro from what I can see and users
probably should just include the math headers if they need it (or define it on
their own for really old C versions).

Reviewed By: JDevlieghere

Differential Revision: https://reviews.llvm.org/D83761




More information about the All-commits mailing list