mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
Make sure we return the right sized type here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85436 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a597103c32
commit
7e5d2ff20f
@ -4220,10 +4220,13 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
|
|||||||
|
|
||||||
assert(CI && "Non-constant type in __builtin_object_size?");
|
assert(CI && "Non-constant type in __builtin_object_size?");
|
||||||
|
|
||||||
|
SDValue Arg = getValue(I.getOperand(0));
|
||||||
|
EVT Ty = Arg.getValueType();
|
||||||
|
|
||||||
if (CI->getZExtValue() < 2)
|
if (CI->getZExtValue() < 2)
|
||||||
setValue(&I, DAG.getConstant(-1, MVT::i32));
|
setValue(&I, DAG.getConstant(-1, Ty));
|
||||||
else
|
else
|
||||||
setValue(&I, DAG.getConstant(0, MVT::i32));
|
setValue(&I, DAG.getConstant(0, Ty));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
case Intrinsic::var_annotation:
|
case Intrinsic::var_annotation:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user