aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/IA64/IA64InstrInfo.cpp
diff options
context:
space:
mode:
authorEdwin Török <edwintorok@gmail.com>2009-07-14 12:22:58 +0000
committerEdwin Török <edwintorok@gmail.com>2009-07-14 12:22:58 +0000
commitb2de05e42ea607956e52004d90d3ba84d127b6c8 (patch)
tree0a49cfad06d685be8e65029326bee1d4e847813f /lib/Target/IA64/IA64InstrInfo.cpp
parent169362ff50b4b82e594b3cb73e1d981865a930d0 (diff)
downloadexternal_llvm-b2de05e42ea607956e52004d90d3ba84d127b6c8.zip
external_llvm-b2de05e42ea607956e52004d90d3ba84d127b6c8.tar.gz
external_llvm-b2de05e42ea607956e52004d90d3ba84d127b6c8.tar.bz2
eliminate extra space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/IA64/IA64InstrInfo.cpp')
-rw-r--r--lib/Target/IA64/IA64InstrInfo.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Target/IA64/IA64InstrInfo.cpp b/lib/Target/IA64/IA64InstrInfo.cpp
index c76ca32..5f53d7d 100644
--- a/lib/Target/IA64/IA64InstrInfo.cpp
+++ b/lib/Target/IA64/IA64InstrInfo.cpp
@@ -113,7 +113,8 @@ void IA64InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
.addFrameIndex(FrameIdx)
.addReg(IA64::r2);
} 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,
@@ -163,8 +164,8 @@ void IA64InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
.addReg(IA64::r2)
.addReg(IA64::r0);
} else {
- LLVM_UNREACHABLE(
- "sorry, I don't know how to load this sort of reg from the stack");
+ LLVM_UNREACHABLE("sorry, I don't know how to load this sort of reg"
+ "from the stack");
}
}
@@ -180,8 +181,7 @@ void IA64InstrInfo::loadRegFromAddr(MachineFunction &MF, unsigned DestReg,
} else if (RC == IA64::PRRegisterClass) {
Opc = IA64::LD1;
} else {
- LLVM_UNREACHABLE(
- "sorry, I don't know how to load this sort of reg");
+ LLVM_UNREACHABLE("sorry, I don't know how to load this sort of reg");
}
DebugLoc DL = DebugLoc::getUnknownLoc();