aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-18 05:27:44 +0000
committerChris Lattner <sabre@nondot.org>2009-10-18 05:27:44 +0000
commit66f2cb90e57e03f3f141ae225969c90a00ac2784 (patch)
treeffedbe025d902025f8f6bf8786bc94e8b1e6b3db /lib
parent234d587487a9c825cef6c5f96a430f69250cbdba (diff)
downloadexternal_llvm-66f2cb90e57e03f3f141ae225969c90a00ac2784.tar.gz
external_llvm-66f2cb90e57e03f3f141ae225969c90a00ac2784.tar.bz2
external_llvm-66f2cb90e57e03f3f141ae225969c90a00ac2784.zip
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')
-rw-r--r--lib/AsmParser/LLParser.cpp2
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;