Commit a2e6888d by Uros Bizjak

* config/i386.c (standard_sse_constant_opcode): Fix last commit.

From-SVN: r178705
parent 974e0ad6
...@@ -8241,7 +8241,10 @@ standard_sse_constant_opcode (rtx insn, rtx x) ...@@ -8241,7 +8241,10 @@ standard_sse_constant_opcode (rtx insn, rtx x)
} }
case 2: case 2:
return "%vpcmpeqd\t%0, %0, %0"; if (TARGET_AVX)
return "vpcmpeqd\t%0, %0, %0";
else
return "pcmpeqd\t%0, %0";
default: default:
break; break;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment