diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-27 21:01:14 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-27 21:01:14 +0000 |
commit | 50d19bf1de50c889a25f434cfa3f2718a5ddb195 (patch) | |
tree | eb5ef98ce3becccaeb95916c09569e217c100886 /llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp | |
parent | 06a573f63d14a8823bb6a671df7f89ed2d236c87 (diff) | |
download | bcm5719-llvm-50d19bf1de50c889a25f434cfa3f2718a5ddb195.tar.gz bcm5719-llvm-50d19bf1de50c889a25f434cfa3f2718a5ddb195.zip |
Correct DestroyMachineFunction's getPassName
llvm-svn: 11929
Diffstat (limited to 'llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp index 76e770727fa..293937276b0 100644 --- a/llvm/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/llvm/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); |