diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-01-01 03:50:34 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-01-01 03:50:34 +0000 |
commit | 554c0547773777a9160a350e2b4ab60dade0feb8 (patch) | |
tree | 2a52133c5a9151c659b007b74d674fc119c6aa9b /llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp | |
parent | 39f18e545e1171fa0c27b0838a070238e967e56a (diff) | |
download | bcm5719-llvm-554c0547773777a9160a350e2b4ab60dade0feb8.tar.gz bcm5719-llvm-554c0547773777a9160a350e2b4ab60dade0feb8.zip |
Better error message.
llvm-svn: 92389
Diffstat (limited to 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp b/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp index b6858404fa3..1c7e5d0891f 100644 --- a/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp @@ -1397,7 +1397,7 @@ void EmitCaseTest(const DagInit& d, unsigned IndentLevel, else if (EmitCaseTest2Args(TestName, d, IndentLevel, OptDescs, O)) return; else - throw TestName + ": unknown edge property!"; + throw "Unknown test '" + TestName + "' used in the 'case' construct!"; } |