Commit 42a1b62e by Ziemowit Laski Committed by Ziemowit Laski

objc-act.c (get_super_receiver): Move '#ifdef OBJCPLUS' boundaries outside…

objc-act.c (get_super_receiver): Move '#ifdef OBJCPLUS' boundaries outside build_component_ref() call (a macro...

2004-02-09  Ziemowit Laski  <zlaski@apple.com>

        * objc/objc-act.c (get_super_receiver): Move '#ifdef OBJCPLUS'
        boundaries outside build_component_ref() call (a macro in ObjC++).

From-SVN: r77584
parent 997b8b4d
2004-02-09 Ziemowit Laski <zlaski@apple.com>
* objc/objc-act.c (get_super_receiver): Move '#ifdef OBJCPLUS'
boundaries outside build_component_ref() call (a macro in ObjC++).
2004-02-09 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa-protos.h (xtensa_copy_incoming_a7): Update.
......
......@@ -7890,10 +7890,11 @@ get_super_receiver (void)
super_expr_list = build_tree_list (NULL_TREE, super_expr);
/* Set class to begin searching. */
super_expr = build_component_ref (UOBJC_SUPER_decl,
#ifdef OBJCPLUS
super_expr = build_component_ref (UOBJC_SUPER_decl,
get_identifier ("super_class"));
#else
super_expr = build_component_ref (UOBJC_SUPER_decl,
get_identifier ("class"));
#endif
......
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