diff options
Diffstat (limited to 'llvm/lib/CodeGen/MachineDebugify.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineDebugify.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineDebugify.cpp b/llvm/lib/CodeGen/MachineDebugify.cpp index 86834db..bee9b63 100644 --- a/llvm/lib/CodeGen/MachineDebugify.cpp +++ b/llvm/lib/CodeGen/MachineDebugify.cpp @@ -66,6 +66,7 @@ struct DebugifyMachineModule : public ModulePass { void getAnalysisUsage(AnalysisUsage &AU) const override { AU.addRequired<MachineModuleInfoWrapperPass>(); AU.addPreserved<MachineModuleInfoWrapperPass>(); + AU.setPreservesCFG(); } static char ID; // Pass identification. @@ -79,6 +80,6 @@ INITIALIZE_PASS_BEGIN(DebugifyMachineModule, DEBUG_TYPE, INITIALIZE_PASS_END(DebugifyMachineModule, DEBUG_TYPE, "Machine Debugify Module", false, false) -ModulePass *createDebugifyMachineModulePass() { +ModulePass *llvm::createDebugifyMachineModulePass() { return new DebugifyMachineModule(); } |