Comment fix.
authorMikhail Glushenkov <foldr@codedgers.com>
Tue, 7 Jul 2009 16:07:36 +0000 (16:07 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Tue, 7 Jul 2009 16:07:36 +0000 (16:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74903 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/LLVMCConfigurationEmitter.cpp

index fc182ce5af8e7dbd748e9200467f62d933556777..42d9d9ce0a35ec5d8a00859e778d8ed3d771f273 100644 (file)
@@ -81,11 +81,10 @@ const DagInit& InitPtrToDag(const Init* ptr) {
 }
 
 // checkNumberOfArguments - Ensure that the number of args in d is
-// less than or equal to min_arguments, otherwise throw an exception.
+// greater than or equal to min_arguments, otherwise throw an exception.
 void checkNumberOfArguments (const DagInit* d, unsigned min_arguments) {
   if (!d || d->getNumArgs() < min_arguments)
-    throw d->getOperator()->getAsString()
-      + ": too few arguments!";
+    throw d->getOperator()->getAsString() + ": too few arguments!";
 }
 
 // isDagEmpty - is this DAG marked with an empty marker?