diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-11 00:20:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-11 00:20:47 +0000 |
commit | 78167faa18e66e95be3d73028b2db99bf3fbdcb3 (patch) | |
tree | 8e10c0577d0cef77677981f80fd9a48a0046cbf7 | |
parent | 2352ce9cb672c0c27aad23389c01df76ec09c1ef (diff) | |
download | external_llvm-78167faa18e66e95be3d73028b2db99bf3fbdcb3.zip external_llvm-78167faa18e66e95be3d73028b2db99bf3fbdcb3.tar.gz external_llvm-78167faa18e66e95be3d73028b2db99bf3fbdcb3.tar.bz2 |
fix pasto in generate assertion msg
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26706 91177308-0d34-0410-b5e6-96231b3b80d8
-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"; |