Commit 1e1eb6c5 by Richard Kenner

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

From-SVN: r13015
parent fe81e4c4
......@@ -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."; \
......
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