mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-26 13:36:28 +00:00
fix a -Wbool-conversions warning from clang.
llvm-svn: 105943
This commit is contained in:
parent
a42e9b4308
commit
16f22c2744
@ -264,7 +264,7 @@ namespace {
|
||||
//
|
||||
static const AllocaInst *isDirectAlloca(const Value *V) {
|
||||
const AllocaInst *AI = dyn_cast<AllocaInst>(V);
|
||||
if (!AI) return false;
|
||||
if (!AI) return 0;
|
||||
if (AI->isArrayAllocation())
|
||||
return 0; // FIXME: we can also inline fixed size array allocas!
|
||||
if (AI->getParent() != &AI->getParent()->getParent()->getEntryBlock())
|
||||
|
Loading…
Reference in New Issue
Block a user