[PATCH] D111382: Support _Float128 and F128 literal in C mode

2021-10-08 Thread Fangrui Song via Phabricator via cfe-commits
MaskRay added a subscriber: zatrazz. MaskRay added a comment. This is to make more glibc files compilable with Clang. (@zatrazz) In D111382#3052514 , @hubert.reinterpretcast wrote: > Are we sure this is wise? We know that any future standard C++ type ca

[PATCH] D111382: Support _Float128 and F128 literal in C mode

2021-10-08 Thread Hubert Tong via Phabricator via cfe-commits
hubert.reinterpretcast added a comment. Are we sure this is wise? We know that any future standard C++ type can't be the same as `__float128` (without changing the latter) because `__float128` mangles the same as 128-bit `long double`. So by making `__float128` the same as `_Float128` in C, we'

[PATCH] D111382: Support _Float128 and F128 literal in C mode

2021-10-07 Thread Fangrui Song via Phabricator via cfe-commits
MaskRay created this revision. MaskRay added reviewers: bkramer, hubert.reinterpretcast, mibintc, nsz. Herald added subscribers: dexonsmith, kbarton, nemanjai, dschuff. MaskRay requested review of this revision. Herald added subscribers: cfe-commits, aheejin. Herald added a project: clang. This ad