From: Brian Gaeke Date: Fri, 27 Feb 2004 21:01:14 +0000 (+0000) Subject: Correct DestroyMachineFunction's getPassName X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3d1fdee339bc9cdb55f1ef0631cb18b4240abb64;p=oota-llvm.git Correct DestroyMachineFunction's getPassName git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11929 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index 76e770727fa..293937276b0 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -82,7 +82,7 @@ namespace { }; struct DestroyMachineFunction : public FunctionPass { - const char *getPassName() const { return "FreeMachineFunction"; } + const char *getPassName() const { return "DestroyMachineFunction"; } static void freeMachineCode(Instruction &I) { MachineCodeForInstruction::destroy(&I);