diff options
author | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2016-03-25 15:42:30 +0000 |
---|---|---|
committer | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2016-03-25 15:42:30 +0000 |
commit | 5dd1e56de5346a7e5e85ca33f4dfe4bfd7b54795 (patch) | |
tree | 32370c26e34f045076ac3b42324ffcc665e1d066 /llvm/lib/Target | |
parent | fc8110041f55483631b9e6f11ea105d41708a512 (diff) | |
download | bcm5719-llvm-5dd1e56de5346a7e5e85ca33f4dfe4bfd7b54795.tar.gz bcm5719-llvm-5dd1e56de5346a7e5e85ca33f4dfe4bfd7b54795.zip |
[SystemZ] Remove isBranch and isTerminator flags on BRCT and BRCTG.
The BranchUnaryRI instruction class already sets these flags.
Reviewed by Ulrich Weigand.
llvm-svn: 264411
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZInstrInfo.td b/llvm/lib/Target/SystemZ/SystemZInstrInfo.td index 9369637def2..7401f111866 100644 --- a/llvm/lib/Target/SystemZ/SystemZInstrInfo.td +++ b/llvm/lib/Target/SystemZ/SystemZInstrInfo.td @@ -192,7 +192,7 @@ defm AsmJLE : IntCondExtendedMnemonic<12, "le", "nh">; // Decrement a register and branch if it is nonzero. These don't clobber CC, // but we might need to split long branches into sequences that do. -let isBranch = 1, isTerminator = 1, Defs = [CC] in { +let Defs = [CC] in { def BRCT : BranchUnaryRI<"brct", 0xA76, GR32>; def BRCTG : BranchUnaryRI<"brctg", 0xA77, GR64>; } |