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
This commit is contained in:
parent
b7048ab7b2
commit
fc9232c98e
4 changed files with 10 additions and 9 deletions
|
@ -1,3 +1,12 @@
|
|||
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>
|
||||
|
||||
PR opt/13862
|
||||
|
|
|
@ -143,5 +143,3 @@ Boston, MA 02111-1307, USA. */
|
|||
#define ASM_OUTPUT_SOURCE_LINE(file, line, counter) \
|
||||
fprintf (file, ".stabn 68,0,%d,.LM%d\n.LM%d:\n", \
|
||||
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)
|
|||
if (! TARGET_V9)
|
||||
return 0;
|
||||
|
||||
if (!COMPARISON_P (op));
|
||||
if (!COMPARISON_P (op))
|
||||
return 0;
|
||||
|
||||
code = GET_CODE (op);
|
||||
|
|
|
@ -2324,12 +2324,6 @@ do { \
|
|||
|
||||
#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.
|
||||
This sequence is indexed by compiler's hard-register-number (see above). */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue