diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-08 03:18:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-08 03:18:28 +0000 |
commit | 9a1ac4c107489b65d92c541acf182000818a900a (patch) | |
tree | eb155b0282eb34bde133ff69eb26203aefbf7d68 | |
parent | 1ddcf35b68a4c326c548272134611ce54b1afd25 (diff) | |
download | external_llvm-9a1ac4c107489b65d92c541acf182000818a900a.zip external_llvm-9a1ac4c107489b65d92c541acf182000818a900a.tar.gz external_llvm-9a1ac4c107489b65d92c541acf182000818a900a.tar.bz2 |
remove a non-temporal store pattern which is not tested and
could never have matched because the operand list was backwards.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97933 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrSSE.td | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index 2743dba..67d987e 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -1090,9 +1090,6 @@ def MOVNTDQ_64mr : PDI<0xE7, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src), "movntdq\t{$src, $dst|$dst, $src}", [(alignednontemporalstore (v2f64 VR128:$src), addr:$dst)]>; -def : Pat<(alignednontemporalstore (v2i64 VR128:$src), addr:$dst), - (MOVNTDQ_64mr VR128:$src, addr:$dst)>; - def MOVNTImr : I<0xC3, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src), "movnti\t{$src, $dst|$dst, $src}", [(nontemporalstore (i32 GR32:$src), addr:$dst)]>, |