diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-02-04 02:23:01 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-02-04 02:23:01 +0000 |
commit | 72f514cf39c6c1cc59a0ed78c7a1eccf182efefa (patch) | |
tree | 5cde97b2f670d5f6fefbc5815bc6e05460ff8ffd | |
parent | e3de85b447b0a94c82f147159a0c903ea47e0069 (diff) |
Remove an unnecessary predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 3e8cc09f4b..254cd98a86 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -3123,8 +3123,7 @@ def : Pat<(f64 fp64immneg0), (FpCHS (FpLD0))>, Requires<[FPStack]>; def : Pat<(f64 fp64immneg1), (FpCHS (FpLD1))>, Requires<[FPStack]>; // Used to conv. i64 to f64 since there isn't a SSE version. -def : Pat<(X86fildflag addr:$src, i64), (FpILD64m addr:$src)>, - Requires<[HasSSE2]>; +def : Pat<(X86fildflag addr:$src, i64), (FpILD64m addr:$src)>; //===----------------------------------------------------------------------===// // Some peepholes |