This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PR target/9068


Hi,
I've commited the attached patch as obivous to both mainline and 3.3
branch.

Honza

Sat Jan 11 11:02:58 CET 2003  Jan Hubicka  <jh@suse.cz>

	PR target/9068
	* i386.c (output_fp_compare): Fix typo
Index: i386.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/i386/i386.c,v
retrieving revision 1.508
diff -c -3 -p -r1.508 i386.c
*** i386.c	9 Jan 2003 05:23:53 -0000	1.508
--- i386.c	11 Jan 2003 10:02:35 -0000
*************** output_fp_compare (insn, operands, eflag
*** 7775,7786 ****
  	if (unordered_p)
  	  return "ucomiss\t{%1, %0|%0, %1}";
  	else
! 	  return "comiss\t{%1, %0|%0, %y}";
        else
  	if (unordered_p)
  	  return "ucomisd\t{%1, %0|%0, %1}";
  	else
! 	  return "comisd\t{%1, %0|%0, %y}";
      }
  
    if (! STACK_TOP_P (cmp_op0))
--- 7775,7786 ----
  	if (unordered_p)
  	  return "ucomiss\t{%1, %0|%0, %1}";
  	else
! 	  return "comiss\t{%1, %0|%0, %1}";
        else
  	if (unordered_p)
  	  return "ucomisd\t{%1, %0|%0, %1}";
  	else
! 	  return "comisd\t{%1, %0|%0, %1}";
      }
  
    if (! STACK_TOP_P (cmp_op0))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]