Refine this to only apply to null in the default address space.

llvm-svn: 89411
This commit is contained in:
Dan Gohman 2009-11-19 23:53:49 +00:00
parent 29eef4f15a
commit 8154e3118a

View File

@ -107,8 +107,10 @@ bool llvm::PointerMayBeCaptured(const Value *V,
break;
case Instruction::ICmp:
// Comparing the pointer against null does not count as a capture.
if (isa<ConstantPointerNull>(I->getOperand(1)))
break;
if (ConstantPointerNull *CPN =
dyn_cast<ConstantPointerNull>(I->getOperand(1)))
if (CPN->getType()->getAddressSpace() == 0)
break;
return true;
default:
// Something else - be conservative and say it is captured.