mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-12 06:31:14 +00:00
The return type is an unsigned, not a bool.
llvm-svn: 156621
This commit is contained in:
parent
9c31a160a8
commit
5d178a402f
@ -719,7 +719,7 @@ unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
|
||||
if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
|
||||
|
||||
MVT VT;
|
||||
if (!isLoadTypeLegal(AI->getType(), VT)) return false;
|
||||
if (!isLoadTypeLegal(AI->getType(), VT)) return 0;
|
||||
|
||||
DenseMap<const AllocaInst*, int>::iterator SI =
|
||||
FuncInfo.StaticAllocaMap.find(AI);
|
||||
|
Loading…
x
Reference in New Issue
Block a user