From 071a279e94e30d51aff3b46a4651d686982488a0 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Tue, 11 Sep 2007 19:55:27 +0000 Subject: Remove (somewhat confusing) Imp<> helper, use let Defs = [], Uses = [] instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41863 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Sparc/SparcInstrInfo.td | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/Target/Sparc') diff --git a/lib/Target/Sparc/SparcInstrInfo.td b/lib/Target/Sparc/SparcInstrInfo.td index ff2ed87170..c41c191a5d 100644 --- a/lib/Target/Sparc/SparcInstrInfo.td +++ b/lib/Target/Sparc/SparcInstrInfo.td @@ -201,12 +201,14 @@ multiclass F3_12np Op3Val> { class Pseudo pattern> : InstSP; +let Defs = [O6], Uses = [O6] in { def ADJCALLSTACKDOWN : Pseudo<(outs), (ins i32imm:$amt), "!ADJCALLSTACKDOWN $amt", - [(callseq_start imm:$amt)]>, Imp<[O6],[O6]>; + [(callseq_start imm:$amt)]>; def ADJCALLSTACKUP : Pseudo<(outs), (ins i32imm:$amt), "!ADJCALLSTACKUP $amt", - [(callseq_end imm:$amt)]>, Imp<[O6],[O6]>; + [(callseq_end imm:$amt)]>; +} def IMPLICIT_DEF_Int : Pseudo<(outs IntRegs:$dst), (ins), "!IMPLICIT_DEF $dst", [(set IntRegs:$dst, (undef))]>; -- cgit v1.2.3-18-g5258