1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

use Value* constructor of CallSite to create potentially improper site, and test that

llvm-svn: 109581
This commit is contained in:
Gabor Greif 2010-07-28 14:28:18 +00:00
parent 9bb43864b1
commit 16a98fddef

View File

@ -401,10 +401,9 @@ bool DSE::handleEndBlock(BasicBlock &BB) {
}
continue;
} else if (CallSite::get(BBI).getInstruction() != 0) {
} else if (CallSite CS = cast<Value>(BBI)) {
// If this call does not access memory, it can't
// be undeadifying any of our pointers.
CallSite CS = CallSite::get(BBI);
if (AA.doesNotAccessMemory(CS))
continue;