diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-12-18 04:06:58 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-12-18 04:06:58 +0000 |
commit | 65ee1e6ff4d82f58fbea5c2e5cadf9a0be797955 (patch) | |
tree | c84c7f51a5785630a29f09d6b43a8be77185b064 /utils/TableGen | |
parent | 78eb804068e2a3cba16b3d7cdd53992ebceb6834 (diff) | |
download | external_llvm-65ee1e6ff4d82f58fbea5c2e5cadf9a0be797955.zip external_llvm-65ee1e6ff4d82f58fbea5c2e5cadf9a0be797955.tar.gz external_llvm-65ee1e6ff4d82f58fbea5c2e5cadf9a0be797955.tar.bz2 |
Fix typo in error message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen')
-rw-r--r-- | utils/TableGen/LLVMCConfigurationEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.cpp b/utils/TableGen/LLVMCConfigurationEmitter.cpp index 1aa0ec6..c97d257 100644 --- a/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/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"; |