diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-19 00:51:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-19 00:51:37 +0000 |
commit | 80132a4b48e804f05875d19c82cd4bc323835e44 (patch) | |
tree | 93610ae11205b87e943ff9a85e076f32c653b263 | |
parent | efc58be8ca55a987946e5799363fea6c2183f0ed (diff) |
mark variable arity instructions as such. Alpha wins the battle for
cleanest backend in this metric :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22893 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Alpha/AlphaInstrInfo.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/Alpha/AlphaInstrInfo.td b/lib/Target/Alpha/AlphaInstrInfo.td index ac542759c6..ea0776b9b9 100644 --- a/lib/Target/Alpha/AlphaInstrInfo.td +++ b/lib/Target/Alpha/AlphaInstrInfo.td @@ -18,11 +18,11 @@ include "AlphaInstrFormats.td" // //#define GP $29 // //#define SP $30 -def PHI : PseudoInstAlpha<(ops ), "#phi">; +def PHI : PseudoInstAlpha<(ops variable_ops), "#phi">; def IDEF : PseudoInstAlpha<(ops GPRC:$RA), "#idef $RA">; -def WTF : PseudoInstAlpha<(ops ), "#wtf">; -def ADJUSTSTACKUP : PseudoInstAlpha<(ops ), "ADJUP">; -def ADJUSTSTACKDOWN : PseudoInstAlpha<(ops ), "ADJDOWN">; +def WTF : PseudoInstAlpha<(ops variable_ops), "#wtf">; +def ADJUSTSTACKUP : PseudoInstAlpha<(ops variable_ops), "ADJUP">; +def ADJUSTSTACKDOWN : PseudoInstAlpha<(ops variable_ops), "ADJDOWN">; def ALTENT : PseudoInstAlpha<(ops s64imm:$TARGET), "$TARGET:\n">; def PCLABEL : PseudoInstAlpha<(ops s64imm:$num), "PCMARKER_$num:\n">; def MEMLABEL : PseudoInstAlpha<(ops s64imm:$i, s64imm:$j, s64imm:$k, s64imm:$m), |