diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/Target.td | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td index 1583a93a98..84f62273d5 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -321,6 +321,18 @@ def LABEL : Instruction { let Namespace = "TargetInstrInfo"; let hasCtrlDep = 1; } +def EXTRACT_SUBREG : Instruction { + let OutOperandList = (ops variable_ops); + let InOperandList = (ops variable_ops); + let AsmString = ""; + let Namespace = "TargetInstrInfo"; +} +def INSERT_SUBREG : Instruction { + let OutOperandList = (ops variable_ops); + let InOperandList = (ops variable_ops); + let AsmString = ""; + let Namespace = "TargetInstrInfo"; +} //===----------------------------------------------------------------------===// // AsmWriter - This class can be implemented by targets that need to customize |