i386.c (ix86_expand_sse_comi): Remove unused variable.

2007-05-01  H.J. Lu  <hongjiu.lu@intel.com>

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

From-SVN: r124344
This commit is contained in:
H.J. Lu 2007-05-02 00:37:51 +00:00 committed by H.J. Lu
parent 6d1e9303bd
commit 9a60b02d97
2 changed files with 5 additions and 2 deletions

View 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

View 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;