]> gcc.gnu.org Git - gcc.git/commitdiff
Objective-C, Darwin: Fix a regression in handling bad receivers.
authorIain Sandoe <iain@sandoe.co.uk>
Sat, 6 Jan 2024 19:21:40 +0000 (19:21 +0000)
committerIain Sandoe <iain@sandoe.co.uk>
Fri, 12 Jan 2024 14:09:29 +0000 (14:09 +0000)
This is seen on 32b hosts with a 64b multilib, and is an ICE when
the build has checking enabled.  The fix is to exit the routine
early if the sender or receiver are already error_mark_node.

gcc/objc/ChangeLog:

* objc-next-runtime-abi-02.cc
(build_v2_objc_method_fixup_call): Early exit for cases
where the sender or receiver are known to be in error.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
gcc/objc/objc-next-runtime-abi-02.cc

index dfc1129530ab43d30f09659735ccdbd0e7a15cb0..a622f4cbf4eee799098b9095ae4856e1c577f204 100644 (file)
@@ -1657,6 +1657,8 @@ build_v2_objc_method_fixup_call (int super_flag, tree method_prototype,
   rcv_p = (super_flag ? objc_super_type : objc_object_type);
 
   lookup_object = build_c_cast (input_location, rcv_p, lookup_object);
+  if (sender == error_mark_node || lookup_object == error_mark_node)
+    return error_mark_node;
 
   /* Use SAVE_EXPR to avoid evaluating the receiver twice.  */
   lookup_object = save_expr (lookup_object);
This page took 0.075269 seconds and 5 git commands to generate.