diff options
Diffstat (limited to 'lib/Target/SparcV8')
-rw-r--r-- | lib/Target/SparcV8/SparcV8InstrInfo.td | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/SparcV8/SparcV8InstrInfo.td b/lib/Target/SparcV8/SparcV8InstrInfo.td index fa088e1..07491eb 100644 --- a/lib/Target/SparcV8/SparcV8InstrInfo.td +++ b/lib/Target/SparcV8/SparcV8InstrInfo.td @@ -149,7 +149,9 @@ class BranchV8<bits<4> cc, string nm> : F2_2<cc, 0b010, nm> { let isBranch = 1; let isTerminator = 1; } -def BA : BranchV8<0b1000, "ba">; + +let isBarrier = 1 in + def BA : BranchV8<0b1000, "ba">; def BN : BranchV8<0b0000, "bn">; def BNE : BranchV8<0b1001, "bne">; def BE : BranchV8<0b0001, "be">; |