1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

AMDGPU: Remove a fixme for ptrrtoint handling

llvm-svn: 262854
This commit is contained in:
Matt Arsenault 2016-03-07 21:12:46 +00:00
parent e24a001b35
commit 773269eba0

View File

@ -433,7 +433,6 @@ static bool collectUsesWithPtrTypes(Value *Val, std::vector<Value*> &WorkList) {
continue;
}
// FIXME: Correctly handle ptrtoint instructions.
Instruction *UseInst = dyn_cast<Instruction>(User);
if (UseInst && UseInst->getOpcode() == Instruction::PtrToInt)
return false;