]> gcc.gnu.org Git - gcc.git/commitdiff
i386.c (ix86_expand_sse_comi): Remove unused variable.
authorH.J. Lu <hongjiu.lu@intel.com>
Wed, 2 May 2007 00:37:51 +0000 (00:37 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Wed, 2 May 2007 00:37:51 +0000 (17:37 -0700)
2007-05-01  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/i386.c (ix86_expand_sse_comi): Remove unused
variable.

From-SVN: r124344

gcc/ChangeLog
gcc/config/i386/i386.c

index c3e3a23eb9c02908d0dc513c14f4aeb26c474922..3882b8b5cd0e82d889c1567e036e9b73687d10a2 100644 (file)
@@ -1,3 +1,8 @@
+2007-05-01  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * config/i386/i386.c (ix86_expand_sse_comi): Remove unused
+       variable.
+
 2007-05-01  Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
 
        * doc/invoke.texi: Fix typo, 'AMD Family 10h core' instead of 
index 6bd0c2dbf92d3855d732f0214e4452a349d2fa2f..138f605935188f3ee76f73d94f2864289ee5c6d4 100644 (file)
@@ -17813,7 +17813,6 @@ ix86_expand_sse_comi (const struct builtin_description *d, tree exp,
   tree arg1 = CALL_EXPR_ARG (exp, 1);
   rtx op0 = expand_normal (arg0);
   rtx op1 = expand_normal (arg1);
-  rtx op2;
   enum machine_mode mode0 = insn_data[d->icode].operand[0].mode;
   enum machine_mode mode1 = insn_data[d->icode].operand[1].mode;
   enum rtx_code comparison = d->comparison;
@@ -17843,7 +17842,6 @@ ix86_expand_sse_comi (const struct builtin_description *d, tree exp,
       || !(*insn_data[d->icode].operand[1].predicate) (op1, mode1))
     op1 = copy_to_mode_reg (mode1, op1);
 
-  op2 = gen_rtx_fmt_ee (comparison, mode0, op0, op1);
   pat = GEN_FCN (d->icode) (op0, op1);
   if (! pat)
     return 0;
This page took 0.112414 seconds and 5 git commands to generate.