Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Side by Side Diff: lib/IR/CMakeLists.txt

Issue 22474008: Add the new @llvm.nacl.atomic.fence.all intrinsic (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 add_llvm_library(LLVMCore 1 add_llvm_library(LLVMCore
2 AsmWriter.cpp 2 AsmWriter.cpp
3 Attributes.cpp 3 Attributes.cpp
4 AutoUpgrade.cpp 4 AutoUpgrade.cpp
5 BasicBlock.cpp 5 BasicBlock.cpp
6 ConstantFold.cpp 6 ConstantFold.cpp
7 Constants.cpp 7 Constants.cpp
8 Core.cpp 8 Core.cpp
9 DataLayout.cpp 9 DataLayout.cpp
10 DebugInfo.cpp 10 DebugInfo.cpp
11 DebugLoc.cpp 11 DebugLoc.cpp
12 DIBuilder.cpp 12 DIBuilder.cpp
13 Dominators.cpp 13 Dominators.cpp
14 Function.cpp 14 Function.cpp
15 GCOV.cpp 15 GCOV.cpp
16 GVMaterializer.cpp 16 GVMaterializer.cpp
17 Globals.cpp 17 Globals.cpp
18 IRBuilder.cpp 18 IRBuilder.cpp
19 InlineAsm.cpp 19 InlineAsm.cpp
20 Instruction.cpp 20 Instruction.cpp
21 Instructions.cpp 21 Instructions.cpp
22 IntrinsicInst.cpp 22 IntrinsicInst.cpp
23 LLVMContext.cpp 23 LLVMContext.cpp
24 LLVMContextImpl.cpp 24 LLVMContextImpl.cpp
25 LeakDetector.cpp 25 LeakDetector.cpp
26 Metadata.cpp 26 Metadata.cpp
27 Module.cpp 27 Module.cpp
28 NaClAsm.cpp
28 NaClAtomicIntrinsics.cpp 29 NaClAtomicIntrinsics.cpp
29 Pass.cpp 30 Pass.cpp
30 PassManager.cpp 31 PassManager.cpp
31 PassRegistry.cpp 32 PassRegistry.cpp
32 PrintModulePass.cpp 33 PrintModulePass.cpp
33 Type.cpp 34 Type.cpp
34 TypeFinder.cpp 35 TypeFinder.cpp
35 Use.cpp 36 Use.cpp
36 User.cpp 37 User.cpp
37 Value.cpp 38 Value.cpp
38 ValueSymbolTable.cpp 39 ValueSymbolTable.cpp
39 ValueTypes.cpp 40 ValueTypes.cpp
40 Verifier.cpp 41 Verifier.cpp
41 ) 42 )
42 43
43 # Workaround: It takes over 20 minutes to compile with msvc10. 44 # Workaround: It takes over 20 minutes to compile with msvc10.
44 # FIXME: Suppressing optimizations to core libraries would not be good thing. 45 # FIXME: Suppressing optimizations to core libraries would not be good thing.
45 if( MSVC_VERSION LESS 1700 ) 46 if( MSVC_VERSION LESS 1700 )
46 set_property( 47 set_property(
47 SOURCE Function.cpp 48 SOURCE Function.cpp
48 PROPERTY COMPILE_FLAGS "/Og-" 49 PROPERTY COMPILE_FLAGS "/Og-"
49 ) 50 )
50 endif() 51 endif()
51 52
52 add_dependencies(LLVMCore intrinsics_gen) 53 add_dependencies(LLVMCore intrinsics_gen)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698