Start handling more global variables.

llvm-svn: 116401
This commit is contained in:
Eric Christopher 2010-10-13 09:11:46 +00:00
parent 4c71c117d1
commit dd0821e7ff
1 changed files with 5 additions and 2 deletions

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.