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 | c05471ea5b411cd97b960da88ecea03133a0ad2c (patch) | |
tree | 9a9f96ef53d0e4c28013cc7d4a49849315ded316 /llvm/lib/AsmParser/LLParser.cpp | |
parent | 80544019892bfbc89f78c3dd87a61568e33d9ba2 (diff) | |
download | bcm5719-llvm-c05471ea5b411cd97b960da88ecea03133a0ad2c.tar.gz bcm5719-llvm-c05471ea5b411cd97b960da88ecea03133a0ad2c.zip |
remove some nonascii weird stuff
llvm-svn: 84410
Diffstat (limited to 'llvm/lib/AsmParser/LLParser.cpp')
-rw-r--r-- | llvm/lib/AsmParser/LLParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index da8f4eaac5d..d6cda3ccf04 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/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; |