From a3f63c2864a2c8d658f2c93898eb56cfe83cda36 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Wed, 14 May 2008 21:46:12 +0000 Subject: [PATCH] sse.md (*sse4_1_pinsrq): Make it 64bit only. 2008-05-14 H.J. Lu * config/i386/sse.md (*sse4_1_pinsrq): Make it 64bit only. From-SVN: r135311 --- gcc/ChangeLog | 4 ++++ gcc/config/i386/sse.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cfc8b09d5e4..ad94d8d8c9a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-05-14 H.J. Lu + + * config/i386/sse.md (*sse4_1_pinsrq): Make it 64bit only. + 2008-05-14 Michael Meissner Dwarakanath Rajagopal diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 6ee090a6b4a..23a63d8c7ef 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -4431,7 +4431,7 @@ (match_operand:DI 2 "nonimmediate_operand" "rm")) (match_operand:V2DI 1 "register_operand" "0") (match_operand:SI 3 "const_pow2_1_to_2_operand" "n")))] - "TARGET_SSE4_1" + "TARGET_SSE4_1 && TARGET_64BIT" { operands[3] = GEN_INT (exact_log2 (INTVAL (operands[3]))); return "pinsrq\t{%3, %2, %0|%0, %2, %3}"; -- 2.30.2