diff options
author | Dan Gohman <gohman@apple.com> | 2009-11-11 18:11:07 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-11-11 18:11:07 +0000 |
commit | adaace8aa8df16f1fa2b097f32ded38a49d89208 (patch) | |
tree | e75b31b365d76940002069b5f88604c34e78645a /lib/Target/Sparc/SparcInstrInfo.td | |
parent | e94975ee64e8308526f1ab33f17f4f7229d9934b (diff) |
Set isBarrier = 1 on return instructions, as they are control barriers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86851 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc/SparcInstrInfo.td')
-rw-r--r-- | lib/Target/Sparc/SparcInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Sparc/SparcInstrInfo.td b/lib/Target/Sparc/SparcInstrInfo.td index f2f1b96f19..d88d5080c6 100644 --- a/lib/Target/Sparc/SparcInstrInfo.td +++ b/lib/Target/Sparc/SparcInstrInfo.td @@ -277,7 +277,7 @@ let usesCustomInserter = 1 in { // Expanded after instruction selection. // Section A.3 - Synthetic Instructions, p. 85 // special cases of JMPL: -let isReturn = 1, isTerminator = 1, hasDelaySlot = 1 in { +let isReturn = 1, isTerminator = 1, hasDelaySlot = 1, isBarrier = 1 in { let rd = O7.Num, rs1 = G0.Num, simm13 = 8 in def RETL: F3_2<2, 0b111000, (outs), (ins), "retl", [(retflag)]>; } |