commit | f0eb7beb66d7402ba7ef32466aa6d9a53c33da01 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Dec 15 21:13:40 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Dec 15 21:13:40 2002 +0000 |
tree | 7362ed2609271910ad61523ebb947e2ab40d39cc | |
parent | 8233e2fe01b76071a1875d8ffb9252c87ca4675b [diff] [blame] |
Give passes nice names! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5059 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86CodeEmitter.cpp b/lib/Target/X86/X86CodeEmitter.cpp index 9b88f12..38d1be6 100644 --- a/lib/Target/X86/X86CodeEmitter.cpp +++ b/lib/Target/X86/X86CodeEmitter.cpp
@@ -25,6 +25,10 @@ bool runOnFunction(Function &F); + virtual const char *getPassName() const { + return "X86 Machine Code Emitter"; + } + private: void emitBasicBlock(MachineBasicBlock &MBB); void emitInstruction(MachineInstr &MI);