1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

The condition register being branched on may not be cr0, as such, print it.

This fixes: UnitTests/2005-07-17-INT-To-FP.c

llvm-svn: 23112
This commit is contained in:
Chris Lattner 2005-08-26 23:42:05 +00:00
parent a3689deabf
commit 25ce484c27

View File

@ -88,17 +88,17 @@ let isBranch = 1, isTerminator = 1 in {
// FIXME: 4*CR# needs to be added to the BI field!
// This will only work for CR0 as it stands now
def BLT : BForm<16, 0, 0, 12, 0, (ops CRRC:$crS, target:$block),
"blt $block">;
"blt $crS, $block">;
def BLE : BForm<16, 0, 0, 4, 1, (ops CRRC:$crS, target:$block),
"ble $block">;
"ble $crS, $block">;
def BEQ : BForm<16, 0, 0, 12, 2, (ops CRRC:$crS, target:$block),
"beq $block">;
"beq $crS, $block">;
def BGE : BForm<16, 0, 0, 4, 0, (ops CRRC:$crS, target:$block),
"bge $block">;
"bge $crS, $block">;
def BGT : BForm<16, 0, 0, 12, 1, (ops CRRC:$crS, target:$block),
"bgt $block">;
"bgt $crS, $block">;
def BNE : BForm<16, 0, 0, 4, 2, (ops CRRC:$crS, target:$block),
"bne $block">;
"bne $crS, $block">;
}
let isCall = 1,