diff options
author | Eric Christopher <echristo@apple.com> | 2010-06-21 20:19:21 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-06-21 20:19:21 +0000 |
commit | c452d79c430159812dbd65084ef3a5e492229c9a (patch) | |
tree | 32c207c10544833689135e648131bfffbda9c468 /lib/Target/Mips | |
parent | b82a7ea1b2d7e82b46719846bfb5d79c28f1040a (diff) |
Remove isTwoAddress from Mips.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips')
-rw-r--r-- | lib/Target/Mips/MipsInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsInstrInfo.td b/lib/Target/Mips/MipsInstrInfo.td index 2b9e94191d..5337c9fb81 100644 --- a/lib/Target/Mips/MipsInstrInfo.td +++ b/lib/Target/Mips/MipsInstrInfo.td @@ -541,7 +541,7 @@ let Predicates = [HasSwap] in { def MIPS_CMOV_ZERO : PatLeaf<(i32 0)>; def MIPS_CMOV_NZERO : PatLeaf<(i32 1)>; -let Predicates = [HasCondMov], isTwoAddress = 1 in { +let Predicates = [HasCondMov], Constraints = "$F = $dst" in { def MOVN : CondMov<0x0a, "movn", MIPS_CMOV_NZERO>; def MOVZ : CondMov<0x0b, "movz", MIPS_CMOV_ZERO>; } |