Commit fc9232c9 by Eric Botcazou Committed by Eric Botcazou

sparc.c (noov_compare64_op): Fix typo.

	* config/sparc/sparc.c (noov_compare64_op): Fix typo.

	* config/sparc/sparc.h (ASM_FLOAT): Delete.
	(ASM_DOUBLE): Likewise.
	(ASM_LONGDOUBLE): Likewise.
	* config/sparc/pbd.h (ASM_INT_OP): Delete.

From-SVN: r78859
parent b7048ab7
2004-03-03 Eric Botcazou <ebotcazou@libertysurf.fr>
* config/sparc/sparc.c (noov_compare64_op): Fix typo.
* config/sparc/sparc.h (ASM_FLOAT): Delete.
(ASM_DOUBLE): Likewise.
(ASM_LONGDOUBLE): Likewise.
* config/sparc/pbd.h (ASM_INT_OP): Delete.
2003-03-03 Richard Henderson <rth@redhat.com> 2003-03-03 Richard Henderson <rth@redhat.com>
PR opt/13862 PR opt/13862
......
...@@ -143,5 +143,3 @@ Boston, MA 02111-1307, USA. */ ...@@ -143,5 +143,3 @@ Boston, MA 02111-1307, USA. */
#define ASM_OUTPUT_SOURCE_LINE(file, line, counter) \ #define ASM_OUTPUT_SOURCE_LINE(file, line, counter) \
fprintf (file, ".stabn 68,0,%d,.LM%d\n.LM%d:\n", \ fprintf (file, ".stabn 68,0,%d,.LM%d\n.LM%d:\n", \
line, counter, counter) line, counter, counter)
#define ASM_INT_OP "\t.long "
...@@ -1001,7 +1001,7 @@ noov_compare64_op (register rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) ...@@ -1001,7 +1001,7 @@ noov_compare64_op (register rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
if (! TARGET_V9) if (! TARGET_V9)
return 0; return 0;
if (!COMPARISON_P (op)); if (!COMPARISON_P (op))
return 0; return 0;
code = GET_CODE (op); code = GET_CODE (op);
......
...@@ -2324,12 +2324,6 @@ do { \ ...@@ -2324,12 +2324,6 @@ do { \
#define ASM_APP_OFF "" #define ASM_APP_OFF ""
/* ??? Try to make the style consistent here (_OP?). */
#define ASM_FLOAT ".single"
#define ASM_DOUBLE ".double"
#define ASM_LONGDOUBLE ".xxx" /* ??? Not known (or used yet). */
/* How to refer to registers in assembler output. /* How to refer to registers in assembler output.
This sequence is indexed by compiler's hard-register-number (see above). */ This sequence is indexed by compiler's hard-register-number (see above). */
......
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