Commit c27c15db by Kaveh R. Ghazi Committed by Kaveh Ghazi

* stormy16.h (ASM_OUTPUT_SYMBOL_REF): Use ASM_OUTPUT_LABEL_REF.

From-SVN: r55822
parent 99086d59
2002-07-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* stormy16.h (ASM_OUTPUT_SYMBOL_REF): Use ASM_OUTPUT_LABEL_REF.
2002-07-28 Zack Weinberg <zack@codesourcery.com>
* defaults.h (ASM_OUTPUT_MEASURED_SIZE): Take only two
......
......@@ -2798,11 +2798,7 @@ do { \
#define ASM_OUTPUT_SYMBOL_REF(STREAM, SYMBOL) \
do { \
if (SYMBOL_REF_FLAG (SYMBOL)) \
{ \
fputs ("@fptr(", STREAM); \
assemble_name (STREAM, XSTR (SYMBOL, 0)); \
fputc (')', STREAM); \
} \
ASM_OUTPUT_LABEL_REF ((STREAM), XSTR (SYMBOL, 0)); \
else \
assemble_name (STREAM, XSTR (SYMBOL, 0)); \
} while (0)
......
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