[compiler-rt] 98885c4 - [compiler-rt] [cmake] Fix a typo in a variable name
Martin Storsjö via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 24 05:38:41 PDT 2022
Author: Martin Storsjö
Date: 2022-03-24T14:37:59+02:00
New Revision: 98885c4e14408a05c5cfd8758f3dad86f82d1f79
URL: https://github.com/llvm/llvm-project/commit/98885c4e14408a05c5cfd8758f3dad86f82d1f79
DIFF: https://github.com/llvm/llvm-project/commit/98885c4e14408a05c5cfd8758f3dad86f82d1f79.diff
LOG: [compiler-rt] [cmake] Fix a typo in a variable name
There's no other references to this variable name, but other files
refer to the same with the same name but with double Fs.
Added:
Modified:
compiler-rt/cmake/builtin-config-ix.cmake
Removed:
################################################################################
diff --git a/compiler-rt/cmake/builtin-config-ix.cmake b/compiler-rt/cmake/builtin-config-ix.cmake
index b20730c2f25dd..a266ba142832f 100644
--- a/compiler-rt/cmake/builtin-config-ix.cmake
+++ b/compiler-rt/cmake/builtin-config-ix.cmake
@@ -11,7 +11,7 @@ builtin_check_c_compiler_flag(-fno-builtin COMPILER_RT_HAS_FNO_BUILTIN_
builtin_check_c_compiler_flag(-std=c11 COMPILER_RT_HAS_STD_C11_FLAG)
builtin_check_c_compiler_flag(-fvisibility=hidden COMPILER_RT_HAS_VISIBILITY_HIDDEN_FLAG)
builtin_check_c_compiler_flag(-fomit-frame-pointer COMPILER_RT_HAS_OMIT_FRAME_POINTER_FLAG)
-builtin_check_c_compiler_flag(-ffreestanding COMPILER_RT_HAS_FREESTANDING_FLAG)
+builtin_check_c_compiler_flag(-ffreestanding COMPILER_RT_HAS_FFREESTANDING_FLAG)
builtin_check_c_compiler_flag(-fxray-instrument COMPILER_RT_HAS_XRAY_COMPILER_FLAG)
builtin_check_c_compiler_source(COMPILER_RT_HAS_ATOMIC_KEYWORD
More information about the llvm-commits
mailing list