mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-22 03:58:16 +00:00
cce9e53d02
analyses into LLVM's Analysis library rather than having them in a Transforms library. This is motivated by the need to have the core AliasAnalysis infrastructure be aware of the ObjCARCAliasAnalysis. However, it also seems like a nice and clean separation. Everything was very easy to move and this doesn't create much clutter in the analysis library IMO. Differential Revision: http://reviews.llvm.org/D12133 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245541 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
349 B
CMake
17 lines
349 B
CMake
add_llvm_library(LLVMObjCARCOpts
|
|
ObjCARC.cpp
|
|
ObjCARCOpts.cpp
|
|
ObjCARCExpand.cpp
|
|
ObjCARCAPElim.cpp
|
|
ObjCARCContract.cpp
|
|
DependencyAnalysis.cpp
|
|
ProvenanceAnalysis.cpp
|
|
ProvenanceAnalysisEvaluator.cpp
|
|
PtrState.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms
|
|
)
|
|
|
|
add_dependencies(LLVMObjCARCOpts intrinsics_gen)
|