]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Darwin, powerpc: Fix bootstrap.
authorIain Sandoe <iain@sandoe.co.uk>
Mon, 8 Jan 2024 14:07:24 +0000 (14:07 +0000)
committerIain Sandoe <iain@sandoe.co.uk>
Fri, 12 Jan 2024 14:00:21 +0000 (14:00 +0000)
Recent changes to the member names of the diagnostics class missed one case in
the Darwin PowerPC host code.  Fixed thus.

gcc/ChangeLog:

* config/rs6000/host-darwin.cc (segv_handler): Use the revised
diagnostics class member name for abort of error.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
gcc/config/rs6000/host-darwin.cc

index 691dcb39b6d9e82b53b07b1ac38eb513ad3a6589..e0001776339d9e484439eed78534cc3fb1e66851 100644 (file)
@@ -119,7 +119,7 @@ segv_handler (int sig ATTRIBUTE_UNUSED,
              }
        }
       
-      if (global_dc->abort_on_error)
+      if (global_dc->m_abort_on_error)
        fancy_abort (__FILE__, __LINE__, __FUNCTION__);
 
       exit (FATAL_EXIT_CODE);