remove some nonascii weird stuff
authorChris Lattner <sabre@nondot.org>
Sun, 18 Oct 2009 05:27:44 +0000 (05:27 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 18 Oct 2009 05:27:44 +0000 (05:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84410 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AsmParser/LLParser.cpp

index da8f4eaac5d49135fbe1821021d9f930ae346ba5..d6cda3ccf042f1c150657766b48ec63737a9302e 100644 (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;