-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[llvm][ItaniumDemangle] Use __LDBL_MANT_DIG__ for configuring demangling of long doubles #135968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ing of long doubles Syncing in the changes from llvm#134976 using the `cp-to-llvm.sh` script.
libc++ failures look unrelated:
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/174/builds/16292 Here is the relevant piece of the build log for the reference
|
…ing of long doubles (llvm#135968) Syncing in the changes from llvm#134976 using the `cp-to-llvm.sh` script.
static_assert(std::is_trivially_copyable<T>::value, | ||
"T is required to be a trivially copyable type"); | ||
static_assert(std::is_trivially_default_constructible<T>::value, | ||
"T is required to be trivially default constructible"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking care of this! |
Syncing in the changes from #134976 using the
cp-to-llvm.sh
script.