diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-09 07:08:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-09 07:08:44 +0000 |
commit | afb23f48a4f5f76b4a0fca870ae5a28c27dde028 (patch) | |
tree | 7d396decbc88063ee7a8378a22896c975882920c /lib/Target/X86/X86InstrFPStack.td | |
parent | 6fa2f9c63688ff240d58c80bc0e433bb27a53c85 (diff) |
rename FP_SETRESULT -> FP_SET_ST0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrFPStack.td')
-rw-r--r-- | lib/Target/X86/X86InstrFPStack.td | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/Target/X86/X86InstrFPStack.td b/lib/Target/X86/X86InstrFPStack.td index 832ea6177c..479aa183a0 100644 --- a/lib/Target/X86/X86InstrFPStack.td +++ b/lib/Target/X86/X86InstrFPStack.td @@ -35,7 +35,7 @@ def SDTX86CwdStore : SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>; def X86fpget_st0 : SDNode<"X86ISD::FP_GET_ST0", SDTX86FpGet, [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>; -def X86fpset : SDNode<"X86ISD::FP_SET_RESULT", SDTX86FpSet, +def X86fpset : SDNode<"X86ISD::FP_SET_ST0", SDTX86FpSet, [SDNPHasChain, SDNPOutFlag]>; def X86fld : SDNode<"X86ISD::FLD", SDTX86Fld, [SDNPHasChain, SDNPMayLoad]>; @@ -150,14 +150,14 @@ def FpGET_ST0_ST1 : FpI_<(outs RFP80:$dst1, RFP80:$dst2), (ins), SpecialFP, let Defs = [ST0] in { -def FpSETRESULT32 : FpI_<(outs), (ins RFP32:$src), SpecialFP, - [(X86fpset RFP32:$src)]>;// ST(0) = FPR +def FpSET_ST0_32 : FpI_<(outs), (ins RFP32:$src), SpecialFP, + [(X86fpset RFP32:$src)]>;// ST(0) = FPR -def FpSETRESULT64 : FpI_<(outs), (ins RFP64:$src), SpecialFP, - [(X86fpset RFP64:$src)]>;// ST(0) = FPR +def FpSET_ST0_64 : FpI_<(outs), (ins RFP64:$src), SpecialFP, + [(X86fpset RFP64:$src)]>;// ST(0) = FPR -def FpSETRESULT80 : FpI_<(outs), (ins RFP80:$src), SpecialFP, - [(X86fpset RFP80:$src)]>;// ST(0) = FPR +def FpSET_ST0_80 : FpI_<(outs), (ins RFP80:$src), SpecialFP, + [(X86fpset RFP80:$src)]>;// ST(0) = FPR } // FpIf32, FpIf64 - Floating Point Psuedo Instruction template. |