mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
I'm pretty sure that ba is branch always, which is a barrier. Brg should
check this :) llvm-svn: 15357
This commit is contained in:
parent
9a23ab1e63
commit
c21741420c
@ -149,7 +149,9 @@ class BranchV8<bits<4> cc, string nm> : F2_2<cc, 0b010, nm> {
|
|||||||
let isBranch = 1;
|
let isBranch = 1;
|
||||||
let isTerminator = 1;
|
let isTerminator = 1;
|
||||||
}
|
}
|
||||||
def BA : BranchV8<0b1000, "ba">;
|
|
||||||
|
let isBarrier = 1 in
|
||||||
|
def BA : BranchV8<0b1000, "ba">;
|
||||||
def BN : BranchV8<0b0000, "bn">;
|
def BN : BranchV8<0b0000, "bn">;
|
||||||
def BNE : BranchV8<0b1001, "bne">;
|
def BNE : BranchV8<0b1001, "bne">;
|
||||||
def BE : BranchV8<0b0001, "be">;
|
def BE : BranchV8<0b0001, "be">;
|
||||||
|
Loading…
Reference in New Issue
Block a user