[opaque pointer type] Use the value type of the GlobalVariable rather than accessing it through the pointee's type

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237312 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie 2015-05-13 22:55:01 +00:00
parent ea3c20f400
commit 7c001dac7a

View File

@ -776,7 +776,7 @@ bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
Name, nullptr, GlobalVariable::NotThreadLocal,
AddrSpace);
} else {
if (GVal->getType()->getElementType() != Ty)
if (GVal->getValueType() != Ty)
return Error(TyLoc,
"forward reference and definition of global have different types");