diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2004-03-11 19:23:15 +0000 |
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-03-11 19:23:15 +0000 |
| commit | c028910d253cbec0df8653dffe13915d06974b6c (patch) | |
| tree | 8904d63db408a18d23358f3c94a0599dbcc514b9 | |
| parent | d313bdfa437ca3a4eaaa15353a8f08dc9eb26590 (diff) | |
| download | bcm5719-llvm-c028910d253cbec0df8653dffe13915d06974b6c.tar.gz bcm5719-llvm-c028910d253cbec0df8653dffe13915d06974b6c.zip | |
Give pass a name
llvm-svn: 12290
| -rw-r--r-- | llvm/lib/Target/SparcV9/SparcV9PreSelection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/SparcV9/SparcV9PreSelection.cpp b/llvm/lib/Target/SparcV9/SparcV9PreSelection.cpp index c992b1c7e2c..90a5fa782cf 100644 --- a/llvm/lib/Target/SparcV9/SparcV9PreSelection.cpp +++ b/llvm/lib/Target/SparcV9/SparcV9PreSelection.cpp @@ -48,6 +48,7 @@ namespace { visit(F); return true; } + const char *getPassName() const { return "SparcV9 Instr. Pre-selection"; } // These methods do the actual work of specializing code void visitInstruction(Instruction &I); // common work for every instr. |

