diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2009-12-06 00:06:33 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2009-12-06 00:06:33 +0000 |
commit | 46999ba6514604c021f8ec30df15e47568840c85 (patch) | |
tree | 7e5823315ef31fe3c59f63cf255357d0ce1ad4b6 /cmake | |
parent | ac88a7eecd22b24ede69845dd74cae286ff14816 (diff) | |
download | external_llvm-46999ba6514604c021f8ec30df15e47568840c85.zip external_llvm-46999ba6514604c021f8ec30df15e47568840c85.tar.gz external_llvm-46999ba6514604c021f8ec30df15e47568840c85.tar.bz2 |
CheckAtomic.cmake: Put all C++ code inside CHECK_CXX_SOURCE_COMPILES.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90685 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/modules/CheckAtomic.cmake | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmake/modules/CheckAtomic.cmake b/cmake/modules/CheckAtomic.cmake index 6c4da66..f40ff4d 100644 --- a/cmake/modules/CheckAtomic.cmake +++ b/cmake/modules/CheckAtomic.cmake @@ -2,11 +2,10 @@ INCLUDE(CheckCXXSourceCompiles) +CHECK_CXX_SOURCE_COMPILES(" #ifdef _MSC_VER #include <windows.h> #endif - -CHECK_CXX_SOURCE_COMPILES(" int main() { #ifdef _MSC_VER volatile LONG val = 1; |