Details
Details
- Reviewers
compnerd
Diff Detail
Diff Detail
Event Timeline
Comment Actions
If Im not mistaken this will now need a larger number of function implementations to support -ffreestanding on Windows?
lib/builtins/int_math.h | ||
---|---|---|
28–32 | Shouldn't this be: #if defined(_MSC_VER) && !defined(__clang__) and throughout. | |
51 | I think this particular case should be: #elif defined(__GNU__) The __extension__ usage is a GNU extension, and __GNU__ will be defined on clang, so that should be more precise and should work without much effort. Also, please add an #else #error "do not not how to check for infinity" #endif |
Shouldn't this be:
and throughout.