Avoid AVX instructions to be selected instead of its SSE form

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109032 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bruno Cardoso Lopes 2010-07-21 20:38:42 +00:00
parent 557c83c99e
commit 928fc3b4a0

View File

@ -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;