eliminate extra space.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75630 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/CellSPU/SPUISelLowering.cpp b/lib/Target/CellSPU/SPUISelLowering.cpp
index 58a9b3a..6b9df67 100644
--- a/lib/Target/CellSPU/SPUISelLowering.cpp
+++ b/lib/Target/CellSPU/SPUISelLowering.cpp
@@ -875,9 +875,8 @@
     }
   }
 
-  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 @@
     }
   }
 
-  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 @@
     // 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;