mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
Trying to unbreak the darwin11 builder
The CR bit tracking code broke PPC/Darwin; trying to get it working again... (the darwin11 builder, which defaults to the darwin ABI when running PPC tests, asserted when running test/CodeGen/PowerPC/inverted-bool-compares.ll) llvm-svn: 202459
This commit is contained in:
parent
94f3724df6
commit
3bd3f4e287
@ -2641,6 +2641,7 @@ PPCTargetLowering::LowerFormalArguments_Darwin(
|
||||
|
||||
switch(ObjectVT.getSimpleVT().SimpleTy) {
|
||||
default: llvm_unreachable("Unhandled argument type!");
|
||||
case MVT::i1:
|
||||
case MVT::i32:
|
||||
case MVT::f32:
|
||||
VecArgOffset += 4;
|
||||
@ -2764,6 +2765,7 @@ PPCTargetLowering::LowerFormalArguments_Darwin(
|
||||
|
||||
switch (ObjectVT.getSimpleVT().SimpleTy) {
|
||||
default: llvm_unreachable("Unhandled argument type!");
|
||||
case MVT::i1:
|
||||
case MVT::i32:
|
||||
if (!isPPC64) {
|
||||
if (GPR_idx != Num_GPR_Regs) {
|
||||
@ -4399,6 +4401,7 @@ PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee,
|
||||
|
||||
switch (Arg.getSimpleValueType().SimpleTy) {
|
||||
default: llvm_unreachable("Unexpected ValueType for argument!");
|
||||
case MVT::i1:
|
||||
case MVT::i32:
|
||||
case MVT::i64:
|
||||
if (GPR_idx != NumGPRs) {
|
||||
|
Loading…
Reference in New Issue
Block a user