diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-07-14 12:22:58 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-07-14 12:22:58 +0000 |
commit | 6cdb897258ffc6dc4a8f45128741647d1d278848 (patch) | |
tree | 48eac81408aab8379a740c519f64f088e0b44db5 /llvm/lib/Target/CellSPU/SPUISelLowering.cpp | |
parent | ba70a9b0c7988808e0fc478a84e9845d96ba464b (diff) | |
download | bcm5719-llvm-6cdb897258ffc6dc4a8f45128741647d1d278848.tar.gz bcm5719-llvm-6cdb897258ffc6dc4a8f45128741647d1d278848.zip |
eliminate extra space.
llvm-svn: 75630
Diffstat (limited to 'llvm/lib/Target/CellSPU/SPUISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/CellSPU/SPUISelLowering.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/lib/Target/CellSPU/SPUISelLowering.cpp b/llvm/lib/Target/CellSPU/SPUISelLowering.cpp index 58a9b3a4671..6b9df67d6cc 100644 --- a/llvm/lib/Target/CellSPU/SPUISelLowering.cpp +++ b/llvm/lib/Target/CellSPU/SPUISelLowering.cpp @@ -875,9 +875,8 @@ LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { } } - LLVM_UNREACHABLE( - "LowerConstantPool: Relocation model other than static" - " not supported."); + LLVM_UNREACHABLE("LowerConstantPool: Relocation model other than static" + " not supported."); return SDValue(); } @@ -907,8 +906,8 @@ LowerJumpTable(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) { } } - LLVM_UNREACHABLE( - "LowerJumpTable: Relocation model other than static not supported."); + LLVM_UNREACHABLE("LowerJumpTable: Relocation model other than static" + " not supported."); return SDValue(); } @@ -1836,7 +1835,7 @@ static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) { // Create a constant vector: switch (Op.getValueType().getSimpleVT()) { default: LLVM_UNREACHABLE("Unexpected constant value type in " - "LowerSCALAR_TO_VECTOR"); + "LowerSCALAR_TO_VECTOR"); case MVT::v16i8: n_copies = 16; VT = MVT::i8; break; case MVT::v8i16: n_copies = 8; VT = MVT::i16; break; case MVT::v4i32: n_copies = 4; VT = MVT::i32; break; |