mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
fix a few more ambiguous types.
llvm-svn: 98531
This commit is contained in:
parent
f2c6e96a15
commit
2c1e56e067
@ -272,9 +272,9 @@ defm MMX_PSRAD : MMXI_binop_rmi_int<0xE2, 0x72, MRM4r, "psrad",
|
||||
|
||||
// Shift up / down and insert zero's.
|
||||
def : Pat<(v1i64 (X86vshl VR64:$src, (i8 imm:$amt))),
|
||||
(MMX_PSLLQri VR64:$src, imm:$amt)>;
|
||||
(MMX_PSLLQri VR64:$src, (GetLo32XForm imm:$amt))>;
|
||||
def : Pat<(v1i64 (X86vshr VR64:$src, (i8 imm:$amt))),
|
||||
(MMX_PSRLQri VR64:$src, imm:$amt)>;
|
||||
(MMX_PSRLQri VR64:$src, (GetLo32XForm imm:$amt))>;
|
||||
|
||||
// Comparison Instructions
|
||||
defm MMX_PCMPEQB : MMXI_binop_rm_int<0x74, "pcmpeqb", int_x86_mmx_pcmpeq_b>;
|
||||
|
@ -379,7 +379,7 @@ let Constraints = "$src1 = $dst" in
|
||||
def MOVSSrr : SSI<0x10, MRMSrcReg,
|
||||
(outs VR128:$dst), (ins VR128:$src1, FR32:$src2),
|
||||
"movss\t{$src2, $dst|$dst, $src2}",
|
||||
[(set VR128:$dst,
|
||||
[(set (v4f32 VR128:$dst),
|
||||
(movl VR128:$src1, (scalar_to_vector FR32:$src2)))]>;
|
||||
|
||||
// Extract the low 32-bit value from one vector and insert it into another.
|
||||
@ -1141,7 +1141,7 @@ let Constraints = "$src1 = $dst" in
|
||||
def MOVSDrr : SDI<0x10, MRMSrcReg,
|
||||
(outs VR128:$dst), (ins VR128:$src1, FR64:$src2),
|
||||
"movsd\t{$src2, $dst|$dst, $src2}",
|
||||
[(set VR128:$dst,
|
||||
[(set (v2f64 VR128:$dst),
|
||||
(movl VR128:$src1, (scalar_to_vector FR64:$src2)))]>;
|
||||
|
||||
// Extract the low 64-bit value from one vector and insert it into another.
|
||||
|
Loading…
Reference in New Issue
Block a user