(MAKE_DECL_ONE_ONLY): Fix typo in use of macro parameter.

From-SVN: r13015
This commit is contained in:
Richard Kenner 1996-10-23 17:48:29 -04:00
parent fe81e4c4df
commit 1e1eb6c543
1 changed files with 3 additions and 3 deletions

View File

@ -648,11 +648,11 @@ do { \
\
DECL_WEAK (DECL) = 1; \
\
name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)); \
name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \
\
if (TREE_CODE (decl) == FUNCTION_DECL) \
if (TREE_CODE (DECL) == FUNCTION_DECL) \
prefix = ".gnu.linkonce.t."; \
else if (TREE_READONLY (decl)) \
else if (TREE_READONLY (DECL)) \
prefix = ".gnu.linkonce.r."; \
else \
prefix = ".gnu.linkonce.d."; \