From cf029824e1c1296707304c5527285c577b1f7d59 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Thu, 18 Dec 2008 04:06:58 +0000 Subject: [PATCH] Fix typo in error message. llvm-svn: 61191 --- llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp b/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp index 1aa0ec6bb1f4..c97d25785ccb 100644 --- a/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp @@ -1560,7 +1560,7 @@ void IncDecWeight (const Init* i, const char* IndentLevel, else throw "Unknown operator in edge properties list: " + OpName + '!' + - "Only 'inc_weight', 'dec_weight' and 'error' are allowed."; + "\nOnly 'inc_weight', 'dec_weight' and 'error' are allowed."; if (d.getNumArgs() > 0) O << InitPtrToInt(d.getArg(0)) << ";\n";