forked from OSchip/llvm-project
Avoid AVX instructions to be selected instead of its SSE form
llvm-svn: 109032
This commit is contained in:
parent
477498f3d7
commit
19b3830142
|
@ -3081,7 +3081,7 @@ let isAsmParserOnly = 1, Predicates = [HasAVX] in
|
|||
defm MOVDDUP : sse3_replicate_dfp<"movddup">;
|
||||
|
||||
// Move Unaligned Integer
|
||||
let isAsmParserOnly = 1 in
|
||||
let isAsmParserOnly = 1, Predicates = [HasAVX] in
|
||||
def VLDDQUrm : S3DI<0xF0, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
|
||||
"vlddqu\t{$src, $dst|$dst, $src}",
|
||||
[(set VR128:$dst, (int_x86_sse3_ldu_dq addr:$src))]>, VEX;
|
||||
|
|
Loading…
Reference in New Issue