From b0adcdb7e53dcd636a7eafba44d941ac23006473 Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Mon, 5 Jan 2009 18:48:47 +0000 Subject: [PATCH] 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 --- lib/AsmParser/LLParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index 0708b798ada..2efd221fa33 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(Ty); const FunctionType *FTy = PTy ? dyn_cast(PTy->getElementType()) : 0;