diff options
author | Steve Naroff <snaroff@apple.com> | 2009-01-05 18:48:47 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-01-05 18:48:47 +0000 |
commit | f6bbfa3424e39fb229e6fd22c1cb6baf7bab97a9 (patch) | |
tree | dbef29ea65fc8ee06853ea79d9bd5f34defe786e /llvm/lib/AsmParser/LLParser.cpp | |
parent | c0adc6b9bc6d45005458adaa18040574614ab37d (diff) | |
download | bcm5719-llvm-f6bbfa3424e39fb229e6fd22c1cb6baf7bab97a9.tar.gz bcm5719-llvm-f6bbfa3424e39fb229e6fd22c1cb6baf7bab97a9.zip |
Remove redundant ValID::ValID:: scoping (doesn't compile on Windows).
llvm-svn: 61727
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 0708b798ada..2efd221fa33 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/lib/AsmParser/LLParser.cpp @@ -1999,7 +1999,7 @@ bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V, V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc); else if (ID.Kind == ValID::t_LocalName) V = PFS.GetVal(ID.StrVal, Ty, ID.Loc); - else if (ID.Kind == ValID::ValID::t_InlineAsm) { + else if (ID.Kind == ValID::t_InlineAsm) { const PointerType *PTy = dyn_cast<PointerType>(Ty); const FunctionType *FTy = PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0; |