diff options
author | Craig Topper <craig.topper@gmail.com> | 2016-09-30 05:35:47 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2016-09-30 05:35:47 +0000 |
commit | f3e671e02010762ba1819ca74c231b714d65c6e2 (patch) | |
tree | 0bf60116baa7d9b822e86d469d8390947452431c /llvm/lib | |
parent | 1c01cbe9ee6b03c32abc2a42472813281d834ca2 (diff) | |
download | bcm5719-llvm-f3e671e02010762ba1819ca74c231b714d65c6e2.tar.gz bcm5719-llvm-f3e671e02010762ba1819ca74c231b714d65c6e2.zip |
[AVX-512] Store address operand should be an input operand for the special stack spilling pseudos for XMM16-31 and YMM16-31 without VLX.
llvm-svn: 282843
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrAVX512.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86InstrAVX512.td b/llvm/lib/Target/X86/X86InstrAVX512.td index 62c3cff5157..fc28e5df947 100644 --- a/llvm/lib/Target/X86/X86InstrAVX512.td +++ b/llvm/lib/Target/X86/X86InstrAVX512.td @@ -2816,13 +2816,13 @@ def VMOVUPSZ256rm_NOVLX : I<0, Pseudo, (outs VR256X:$dst), (ins f256mem:$src), } let isPseudo = 1, mayStore = 1, hasSideEffects = 0 in { -def VMOVAPSZ128mr_NOVLX : I<0, Pseudo, (outs f128mem:$dst), (ins VR128X:$src), +def VMOVAPSZ128mr_NOVLX : I<0, Pseudo, (outs), (ins f128mem:$dst, VR128X:$src), "", []>; -def VMOVAPSZ256mr_NOVLX : I<0, Pseudo, (outs f256mem:$dst), (ins VR256X:$src), +def VMOVAPSZ256mr_NOVLX : I<0, Pseudo, (outs), (ins f256mem:$dst, VR256X:$src), "", []>; -def VMOVUPSZ128mr_NOVLX : I<0, Pseudo, (outs f128mem:$dst), (ins VR128X:$src), +def VMOVUPSZ128mr_NOVLX : I<0, Pseudo, (outs), (ins f128mem:$dst, VR128X:$src), "", []>; -def VMOVUPSZ256mr_NOVLX : I<0, Pseudo, (outs f256mem:$dst), (ins VR256X:$src), +def VMOVUPSZ256mr_NOVLX : I<0, Pseudo, (outs), (ins f256mem:$dst, VR256X:$src), "", []>; } |