diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-02 19:57:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-02 19:57:45 +0000 |
commit | 63b61e87397d888f27676cb410e212bba6e56ba4 (patch) | |
tree | 2f27722fcc8170b3e10a1529083b38d0077b5446 | |
parent | d932cbf613932073640a146774a27896c828b381 (diff) | |
download | bcm5719-llvm-63b61e87397d888f27676cb410e212bba6e56ba4.tar.gz bcm5719-llvm-63b61e87397d888f27676cb410e212bba6e56ba4.zip |
No need to declare implicit uses/defs of ST0
llvm-svn: 11081
-rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index 1dc63bb7828..aecbca95cf0 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/lib/Target/X86/X86InstrInfo.td @@ -435,7 +435,7 @@ def FLD1 : FPInst<"fld1", 0xE8, RawFrm, ArgF80, ZeroArgFP>, D9; // Unary read-modify-write operations... -def FCHS : FPInst<"fchs", 0xE0, RawFrm, ArgF80, OneArgFPRW>, D9, Imp<[ST0],[ST0]>; // f1 = fchs f2 +def FCHS : FPInst<"fchs", 0xE0, RawFrm, ArgF80, OneArgFPRW>, D9; // f1 = fchs f2 // Binary arithmetic operations... class FPST0rInst<string n, bits<8> o> |