diff options
author | Akshat Oke <Akshat.Oke@amd.com> | 2025-04-14 20:52:26 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-14 20:52:26 +0530 |
commit | f133eae70c8b9f4e70372443b79995c5f39727f0 (patch) | |
tree | 74ee7d579a3479fb31f97e7cee70ae8dcbb0607e /llvm/lib/CodeGen/CodeGen.cpp | |
parent | b2c9a58b8f28b353b3f0b4ef98fa704c463ba1a4 (diff) | |
download | llvm-f133eae70c8b9f4e70372443b79995c5f39727f0.zip llvm-f133eae70c8b9f4e70372443b79995c5f39727f0.tar.gz llvm-f133eae70c8b9f4e70372443b79995c5f39727f0.tar.bz2 |
[CodeGen][NPM] Port MachineSanitizerBinaryMetadata to NPM (#130069)
Didn't find a test for this (but there are tests for the `Function`
version of this pass)
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 b77cefc..0581598 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -90,7 +90,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeMachineOptimizationRemarkEmitterPassPass(Registry); initializeMachineOutlinerPass(Registry); initializeMachinePipelinerPass(Registry); - initializeMachineSanitizerBinaryMetadataPass(Registry); + initializeMachineSanitizerBinaryMetadataLegacyPass(Registry); initializeModuloScheduleTestPass(Registry); initializeMachinePostDominatorTreeWrapperPassPass(Registry); initializeMachineRegionInfoPassPass(Registry); |