diff options
-rw-r--r-- | utils/TableGen/IntrinsicEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/IntrinsicEmitter.cpp b/utils/TableGen/IntrinsicEmitter.cpp index c77b9ba..bf300ca 100644 --- a/utils/TableGen/IntrinsicEmitter.cpp +++ b/utils/TableGen/IntrinsicEmitter.cpp @@ -169,7 +169,7 @@ void IntrinsicEmitter::EmitVerifier(const std::vector<CodeGenIntrinsic> &Ints, for (unsigned j = 1; j != Ints[i].ArgTypes.size(); ++j) OS << " Assert1(FTy->getParamType(" << j-1 << ")->getTypeID() == " << Ints[i].ArgTypes[j] << ",\n" - << " \"Illegal result type!\", IF);\n"; + << " \"Illegal argument type!\", IF);\n"; OS << " break;\n"; } OS << " }\n"; |