Remove redundant ValID::ValID:: scoping (doesn't compile on Windows).

llvm-svn: 61727
This commit is contained in:
Steve Naroff 2009-01-05 18:48:47 +00:00
parent c0adc6b9bc
commit f6bbfa3424
1 changed files with 1 additions and 1 deletions

View File

@ -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;