mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
13ace6664f
- requires existing debug information to be present - fixes up file name and line number information in metadata - emits a "<orig_filename>-debug.ll" succinct IR file (without !dbg metadata or debug intrinsics) that can be read by a debugger - initialize pass in opt tool to enable the "-debug-ir" flag - lit tests to follow git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181467 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
343 B
CMake
17 lines
343 B
CMake
add_llvm_library(LLVMInstrumentation
|
|
AddressSanitizer.cpp
|
|
BlackList.cpp
|
|
BoundsChecking.cpp
|
|
DebugIR.cpp
|
|
EdgeProfiling.cpp
|
|
GCOVProfiling.cpp
|
|
MemorySanitizer.cpp
|
|
Instrumentation.cpp
|
|
OptimalEdgeProfiling.cpp
|
|
PathProfiling.cpp
|
|
ProfilingUtils.cpp
|
|
ThreadSanitizer.cpp
|
|
)
|
|
|
|
add_dependencies(LLVMInstrumentation intrinsics_gen)
|