File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -5619,7 +5619,7 @@ static constexpr int getFEnvRoundingMode(llvm::RoundingMode rm) {
5619
5619
}
5620
5620
5621
5621
APFloat exp (const APFloat &X, RoundingMode rounding_mode) {
5622
- if (&X.getSemantics () == ( const llvm::fltSemantics *) &semIEEEsingle) {
5622
+ if (&X.getSemantics () == &semIEEEsingle) {
5623
5623
float result = LIBC_NAMESPACE::shared::expf (
5624
5624
X.convertToFloat (), getFEnvRoundingMode (rounding_mode));
5625
5625
return APFloat (result);
Original file line number Diff line number Diff line change @@ -386,6 +386,5 @@ target_include_directories(LLVMSupport
386
386
)
387
387
388
388
# Integrating LLVM libc's math functions
389
- set_property (TARGET LLVMSupport PROPERTY CXX_STANDARD 17 )
390
389
target_include_directories (LLVMSupport PRIVATE "${LLVM_INCLUDE_DIR} /../../libc" )
391
390
target_compile_options (LLVMSupport PRIVATE "-Wno-c99-extensions" ) # _Complex warnings.
You can’t perform that action at this time.
0 commit comments