diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-18 05:27:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-18 05:27:44 +0000 |
commit | c6e200960812992f1124c92f801166bd1b387971 (patch) | |
tree | ffedbe025d902025f8f6bf8786bc94e8b1e6b3db /lib/AsmParser/LLParser.cpp | |
parent | 1c79be9dcd0171e5a3c6f19c456e685ad85edf31 (diff) |
remove some nonascii weird stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84410 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.cpp')
-rw-r--r-- | lib/AsmParser/LLParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index da8f4eaac5..d6cda3ccf0 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; |