diff options
author | Akshat Oke <Akshat.Oke@amd.com> | 2025-04-01 15:38:49 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 15:38:49 +0530 |
commit | 4a687024559d5ef10abe6ed10555c5f5c2cfcb40 (patch) | |
tree | 9d82ed13c20a16c7eb0889752d17b24032b6f7e7 /llvm/lib/CodeGen/CodeGen.cpp | |
parent | 337bad3921356fba89409e03793f7d2df846c0e9 (diff) | |
download | llvm-4a687024559d5ef10abe6ed10555c5f5c2cfcb40.zip llvm-4a687024559d5ef10abe6ed10555c5f5c2cfcb40.tar.gz llvm-4a687024559d5ef10abe6ed10555c5f5c2cfcb40.tar.bz2 |
[CodeGen][NPM] Port XRayInstrumentation to NPM (#129865)
Diffstat (limited to 'llvm/lib/CodeGen/CodeGen.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGen.cpp b/llvm/lib/CodeGen/CodeGen.cpp index 771e45c..b1c2630 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -145,5 +145,5 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeVirtRegRewriterPass(Registry); initializeWasmEHPreparePass(Registry); initializeWinEHPreparePass(Registry); - initializeXRayInstrumentationPass(Registry); + initializeXRayInstrumentationLegacyPass(Registry); } |