diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-15 00:52:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-15 00:52:43 +0000 |
commit | 77144e719f6450c67612bbdd93635f523a41236c (patch) | |
tree | 4ee470541d5a5451096edf56d537513bd2d8d42a | |
parent | a833f6b0617228fa11f7d94bbabf87f737124a57 (diff) | |
download | external_llvm-77144e719f6450c67612bbdd93635f523a41236c.zip external_llvm-77144e719f6450c67612bbdd93635f523a41236c.tar.gz external_llvm-77144e719f6450c67612bbdd93635f523a41236c.tar.bz2 |
fix an ambiguous pattern, contrary to expectations, scalar_to_vector
doesn't have a type constraint on the scalar because we don't have
an 'sAny' type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98527 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrNEON.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index ca85df9..8fee6fa 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td @@ -2708,7 +2708,7 @@ def : Pat<(v2f64 (insertelt QPR:$src1, DPR:$src2, imm:$src3)), def : Pat<(v2f32 (scalar_to_vector SPR:$src)), (INSERT_SUBREG (v2f32 (IMPLICIT_DEF)), SPR:$src, arm_ssubreg_0)>; -def : Pat<(v2f64 (scalar_to_vector DPR:$src)), +def : Pat<(v2f64 (scalar_to_vector (f64 DPR:$src))), (INSERT_SUBREG (v2f64 (IMPLICIT_DEF)), DPR:$src, arm_dsubreg_0)>; def : Pat<(v4f32 (scalar_to_vector SPR:$src)), (INSERT_SUBREG (v4f32 (IMPLICIT_DEF)), SPR:$src, arm_ssubreg_0)>; |