The ever-important vanity pass name :)

llvm-svn: 19731
This commit is contained in:
Chris Lattner 2005-01-21 21:35:14 +00:00
parent 24bf1ca350
commit fd4d7f71ae

View File

@ -358,6 +358,10 @@ namespace {
ISel(TargetMachine &TM) : SelectionDAGISel(X86Lowering), X86Lowering(TM) {
}
virtual const char *getPassName() const {
return "X86 Pattern Instruction Selection";
}
unsigned getRegPressure(SDOperand O) {
return RegPressureMap[O.Val];
}