From: Chris Lattner Date: Sun, 18 Oct 2009 05:27:44 +0000 (+0000) Subject: remove some nonascii weird stuff X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c6e200960812992f1124c92f801166bd1b387971;p=oota-llvm.git remove some nonascii weird stuff git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84410 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index da8f4eaac5d..d6cda3ccf04 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -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;