Commit 875fbf80 by Richard Kenner

(SELECT_SECTION): Fix typo (arg names) in last change.

From-SVN: r6823
parent 1ff1a2d2
...@@ -536,13 +536,13 @@ objc_section_init () \ ...@@ -536,13 +536,13 @@ objc_section_init () \
else \ else \
data_section (); \ data_section (); \
} \ } \
else if (TREE_CODE (DECL) == VAR_DECL) \ else if (TREE_CODE (exp) == VAR_DECL) \
{ \ { \
if ((flag_pic && RELOC) \ if ((flag_pic && reloc) \
|| !TREE_READONLY (DECL) || TREE_SIDE_EFFECTS (DECL) \ || !TREE_READONLY (exp) || TREE_SIDE_EFFECTS (exp) \
|| !DECL_INITIAL (DECL) \ || !DECL_INITIAL (exp) \
|| (DECL_INITIAL (DECL) != error_mark_node \ || (DECL_INITIAL (exp) != error_mark_node \
&& !TREE_CONSTANT (DECL_INITIAL (DECL)))) \ && !TREE_CONSTANT (DECL_INITIAL (exp)))) \
data_section (); \ data_section (); \
else \ else \
readonly_data_section (); \ readonly_data_section (); \
......
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