aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AsmParser
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2009-01-05 18:48:47 +0000
committerSteve Naroff <snaroff@apple.com>2009-01-05 18:48:47 +0000
commitb0adcdb7e53dcd636a7eafba44d941ac23006473 (patch)
treefe6e030f72338aa8fdbc9d7d795853ac02ecec09 /lib/AsmParser
parentc69bf2c832386140d6606eef3febf2d3aa7a64f0 (diff)
downloadexternal_llvm-b0adcdb7e53dcd636a7eafba44d941ac23006473.zip
external_llvm-b0adcdb7e53dcd636a7eafba44d941ac23006473.tar.gz
external_llvm-b0adcdb7e53dcd636a7eafba44d941ac23006473.tar.bz2
Remove redundant ValID::ValID:: scoping (doesn't compile on Windows).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61727 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-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 0708b79..2efd221 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/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;