1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Start handling more global variables.

llvm-svn: 116401
This commit is contained in:
Eric Christopher 2010-10-13 09:11:46 +00:00
parent 1eba2917fa
commit f7ab2cd3df

View File

@ -620,8 +620,11 @@ bool ARMFastISel::ARMComputeRegOffset(const Value *Obj, unsigned &Reg,
// FIXME: Handle global variables.
if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
(void)GV;
return false;
unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
if (Tmp == 0) return false;
Reg = Tmp;
return true;
}
// Try to get this in a register if nothing else has worked.