aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-02 19:57:45 +0000
committerChris Lattner <sabre@nondot.org>2004-02-02 19:57:45 +0000
commit1580193020ceb6a01719aa3bf5eb3bf2384c82e6 (patch)
tree88b2bb6c6b32ff426b08b7efa5fdd9960a8f70db
parent02babb881755b824b0d4e71feff557dd8b52d5c5 (diff)
No need to declare implicit uses/defs of ST0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11081 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86InstrInfo.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td
index 1dc63bb782..aecbca95cf 100644
--- a/lib/Target/X86/X86InstrInfo.td
+++ b/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>