diff options
author | Iain Sandoe <iain@sandoe.co.uk> | 2024-01-08 14:07:24 +0000 |
---|---|---|
committer | Iain Sandoe <iain@sandoe.co.uk> | 2024-01-12 14:00:21 +0000 |
commit | 4e6f7a3d5c8a6d6e2f14a8a5f6f62b3ae9549b1d (patch) | |
tree | 7402d3df623b3821f17f022942ddff82fad260a6 /gcc | |
parent | 549ea1487a534d0eef6a424075264ba542514c3d (diff) | |
download | gcc-4e6f7a3d5c8a6d6e2f14a8a5f6f62b3ae9549b1d.zip gcc-4e6f7a3d5c8a6d6e2f14a8a5f6f62b3ae9549b1d.tar.gz gcc-4e6f7a3d5c8a6d6e2f14a8a5f6f62b3ae9549b1d.tar.bz2 |
Darwin, powerpc: Fix bootstrap.
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>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/host-darwin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/host-darwin.cc b/gcc/config/rs6000/host-darwin.cc index 691dcb3..e000177 100644 --- a/gcc/config/rs6000/host-darwin.cc +++ b/gcc/config/rs6000/host-darwin.cc @@ -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); |