mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
A better error message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71068 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
87e3bcab73
commit
e031e4bcb9
@ -86,8 +86,8 @@ const DagInit& InitPtrToDag(const Init* ptr) {
|
|||||||
// less than or equal to min_arguments, otherwise throw an exception.
|
// less than or equal to min_arguments, otherwise throw an exception.
|
||||||
void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
|
void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
|
||||||
if (!d || d->getNumArgs() < min_arguments)
|
if (!d || d->getNumArgs() < min_arguments)
|
||||||
throw "Property " + d->getOperator()->getAsString()
|
throw d->getOperator()->getAsString()
|
||||||
+ " has too few arguments!";
|
+ ": too few arguments!";
|
||||||
}
|
}
|
||||||
|
|
||||||
// isDagEmpty - is this DAG marked with an empty marker?
|
// isDagEmpty - is this DAG marked with an empty marker?
|
||||||
|
Loading…
Reference in New Issue
Block a user