fix pasto in generate assertion msg

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26706 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-03-11 00:20:47 +00:00
parent 2352ce9cb6
commit 78167faa18

View File

@ -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";