remove some nonascii weird stuff

llvm-svn: 84410
This commit is contained in:
Chris Lattner 2009-10-18 05:27:44 +00:00
parent 8054401989
commit c05471ea5b
1 changed files with 1 additions and 1 deletions

View File

@ -3316,7 +3316,7 @@ bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
}
/// ParsePHI
/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Valueß ']')*
/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
PATypeHolder Ty(Type::getVoidTy(Context));
Value *Op0, *Op1;