Remove extra \n from LLVM_UNREACHABLE calls.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75416 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Torok Edwin
2009-07-12 07:15:17 +00:00
parent 7ab2eb4a80
commit 29fd056d81
9 changed files with 16 additions and 17 deletions

View File

@@ -1121,7 +1121,7 @@ namespace llvm {
template<class ConstantClass, class TypeClass>
struct VISIBILITY_HIDDEN ConvertConstantType {
static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
LLVM_UNREACHABLE("This type cannot be converted!\n");
LLVM_UNREACHABLE("This type cannot be converted!");
}
};