Remvoe use of MO.isVirtualRegister(), turn an assertion into an assert()

llvm-svn: 11280
This commit is contained in:
Chris Lattner 2004-02-10 20:47:24 +00:00
parent 0e615e6c20
commit 2d5feb5e04
1 changed files with 3 additions and 5 deletions

View File

@ -594,11 +594,9 @@ int64_t SparcV9CodeEmitter::getMachineOpValue(MachineInstr &MI,
MachineOperand &MO) {
int64_t rv = 0; // Return value; defaults to 0 for unhandled cases
// or things that get fixed up later by the JIT.
if (MO.isVirtualRegister()) {
std::cerr << "ERROR: virtual register found in machine code.\n";
abort();
} else if (MO.isPCRelativeDisp()) {
assert(MO.getType() != MachineOperand::MO_VirtualRegister &&
"ERROR: virtual register found in machine code.");
if (MO.isPCRelativeDisp()) {
DEBUG(std::cerr << "PCRelativeDisp: ");
Value *V = MO.getVRegValue();
if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {