diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-21 06:50:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-21 06:50:21 +0000 |
commit | 920c37afc5896201ec014041cbd270289baa25c0 (patch) | |
tree | bd81c3e44641c1d7a5abc3a3115abe9edfe02a48 /lib/Target/X86/X86InstrFPStack.td | |
parent | 24e0a546b40d67dd3662273eb4aef30c230a15ef (diff) |
remove Evan's "ugly hack" that sorta attempted to get
x86-64 return conventions correct, but was never enabled.
We can now do the "right thing" with multiple return values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48635 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrFPStack.td')
-rw-r--r-- | lib/Target/X86/X86InstrFPStack.td | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Target/X86/X86InstrFPStack.td b/lib/Target/X86/X86InstrFPStack.td index be9129471c..22ca7c681c 100644 --- a/lib/Target/X86/X86InstrFPStack.td +++ b/lib/Target/X86/X86InstrFPStack.td @@ -145,10 +145,6 @@ def FpGET_ST1_32 : FpI_<(outs RFP32:$dst), (ins), SpecialFP, []>; // FPR = ST(1) def FpGET_ST1_64 : FpI_<(outs RFP64:$dst), (ins), SpecialFP, []>; // FPR = ST(1) def FpGET_ST1_80 : FpI_<(outs RFP80:$dst), (ins), SpecialFP, []>; // FPR = ST(1) -def FpGET_ST0_ST1 : FpI_<(outs RFP80:$dst1, RFP80:$dst2), (ins), SpecialFP, - []>; // FPR = ST(0), FPR = ST(1) - - let Defs = [ST0] in { def FpSET_ST0_32 : FpI_<(outs), (ins RFP32:$src), SpecialFP, []>; // ST(0) = FPR def FpSET_ST0_64 : FpI_<(outs), (ins RFP64:$src), SpecialFP, []>; // ST(0) = FPR |