eliminate extra space.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75630 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Torok Edwin
2009-07-14 12:22:58 +00:00
parent 94ac0343cc
commit 481d15a122
9 changed files with 24 additions and 25 deletions

View File

@ -875,8 +875,7 @@ LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
} }
} }
LLVM_UNREACHABLE( LLVM_UNREACHABLE("LowerConstantPool: Relocation model other than static"
"LowerConstantPool: Relocation model other than static"
" not supported."); " not supported.");
return SDValue(); return SDValue();
} }
@ -907,8 +906,8 @@ LowerJumpTable(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
} }
} }
LLVM_UNREACHABLE( LLVM_UNREACHABLE("LowerJumpTable: Relocation model other than static"
"LowerJumpTable: Relocation model other than static not supported."); " not supported.");
return SDValue(); return SDValue();
} }

View File

@ -113,7 +113,8 @@ void IA64InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
.addFrameIndex(FrameIdx) .addFrameIndex(FrameIdx)
.addReg(IA64::r2); .addReg(IA64::r2);
} else } else
LLVM_UNREACHABLE("sorry, I don't know how to store this sort of reg in the stack"); LLVM_UNREACHABLE("sorry, I don't know how to store this sort of reg"
"in the stack");
} }
void IA64InstrInfo::storeRegToAddr(MachineFunction &MF, unsigned SrcReg, void IA64InstrInfo::storeRegToAddr(MachineFunction &MF, unsigned SrcReg,
@ -163,8 +164,8 @@ void IA64InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
.addReg(IA64::r2) .addReg(IA64::r2)
.addReg(IA64::r0); .addReg(IA64::r0);
} else { } else {
LLVM_UNREACHABLE( LLVM_UNREACHABLE("sorry, I don't know how to load this sort of reg"
"sorry, I don't know how to load this sort of reg from the stack"); "from the stack");
} }
} }
@ -180,8 +181,7 @@ void IA64InstrInfo::loadRegFromAddr(MachineFunction &MF, unsigned DestReg,
} else if (RC == IA64::PRRegisterClass) { } else if (RC == IA64::PRRegisterClass) {
Opc = IA64::LD1; Opc = IA64::LD1;
} else { } else {
LLVM_UNREACHABLE( LLVM_UNREACHABLE("sorry, I don't know how to load this sort of reg");
"sorry, I don't know how to load this sort of reg");
} }
DebugLoc DL = DebugLoc::getUnknownLoc(); DebugLoc DL = DebugLoc::getUnknownLoc();

View File

@ -42,8 +42,8 @@ void X86ATTAsmPrinter::printSSECC(const MCInst *MI, unsigned Op) {
void X86ATTAsmPrinter::printPICLabel(const MCInst *MI, unsigned Op) { void X86ATTAsmPrinter::printPICLabel(const MCInst *MI, unsigned Op) {
LLVM_UNREACHABLE( LLVM_UNREACHABLE("This is only used for MOVPC32r,"
"This is only used for MOVPC32r, should lower before asm printing!"); "should lower before asm printing!");
} }