1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Update comment.

llvm-svn: 119861
This commit is contained in:
Eric Christopher 2010-11-19 22:37:58 +00:00
parent 65402c3a76
commit 899d8247c8

View File

@ -609,9 +609,8 @@ bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
const User *U = NULL; const User *U = NULL;
unsigned Opcode = Instruction::UserOp1; unsigned Opcode = Instruction::UserOp1;
if (const Instruction *I = dyn_cast<Instruction>(Obj)) { if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
// Don't walk into other basic blocks; it's possible we haven't // Don't walk into other basic blocks unless the object is an alloca from
// visited them yet, so the instructions may not yet be assigned // another block, otherwise it may not have a virtual register assigned.
// virtual registers.
if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) || if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) { FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
Opcode = I->getOpcode(); Opcode = I->getOpcode();