Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / source / Expression / CMakeLists.txt
blob9ba5fefc09b6a70dd4aee28814fcd1e3c9c5c29c
1 add_lldb_library(lldbExpression NO_PLUGIN_DEPENDENCIES
2   DiagnosticManager.cpp
3   DWARFExpression.cpp
4   DWARFExpressionList.cpp
5   Expression.cpp
6   ExpressionTypeSystemHelper.cpp
7   ExpressionVariable.cpp
8   FunctionCaller.cpp
9   IRExecutionUnit.cpp
10   IRInterpreter.cpp
11   IRMemoryMap.cpp
12   LLVMUserExpression.cpp
13   Materializer.cpp
14   ObjectFileJIT.cpp
15   REPL.cpp
16   UserExpression.cpp
17   UtilityFunction.cpp
19   DEPENDS
20   intrinsics_gen
22   LINK_LIBS
23     lldbCore
24     lldbHost
25     lldbInterpreter
26     lldbSymbol
27     lldbTarget
28     lldbUtility
30   LINK_COMPONENTS
31     Core
32     ExecutionEngine
33     Support
34   )