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 | 69035f00e3d4ea598e5fe4d87ebf5d291131be36 (patch) | |
| tree | 49879515486fddd38d9e8100c525586178433750 | |
| parent | 2c5e530430f908e38b98ebd2251a8a8b4753784f (diff) | |
| download | bcm5719-llvm-69035f00e3d4ea598e5fe4d87ebf5d291131be36.tar.gz bcm5719-llvm-69035f00e3d4ea598e5fe4d87ebf5d291131be36.zip | |
fix pasto in generate assertion msg
llvm-svn: 26706
| -rw-r--r-- | llvm/utils/TableGen/IntrinsicEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/IntrinsicEmitter.cpp b/llvm/utils/TableGen/IntrinsicEmitter.cpp index c77b9ba096c..bf300ca513a 100644 --- a/llvm/utils/TableGen/IntrinsicEmitter.cpp +++ b/llvm/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"; |

