diff options
author | Iain Sandoe <iain@sandoe.co.uk> | 2021-12-17 09:29:02 +0000 |
---|---|---|
committer | Iain Sandoe <iain@sandoe.co.uk> | 2021-12-17 09:43:55 +0000 |
commit | 7c0ceaed0c07ece9ce0112ea6512f38855ae868e (patch) | |
tree | be393e6656dc5a7df214e84c8a04e63b03baa295 /gcc/config | |
parent | 744428312e245cf506fbbdd299801cbbf539c000 (diff) | |
download | gcc-7c0ceaed0c07ece9ce0112ea6512f38855ae868e.zip gcc-7c0ceaed0c07ece9ce0112ea6512f38855ae868e.tar.gz gcc-7c0ceaed0c07ece9ce0112ea6512f38855ae868e.tar.bz2 |
Darwin, ppc: Additional change for r12-5974.
This adds a missed change from r12-5974-g926d64906af.
The builin_decls array has been renamed to drop the trailing
_x that was used during the main changes to the builtins.
Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
gcc/ChangeLog:
* config/rs6000/darwin.h: Drop trailing _x from the
builtin_decls array name.
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/rs6000/darwin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index 7bc1009..8288003 100644 --- a/gcc/config/rs6000/darwin.h +++ b/gcc/config/rs6000/darwin.h @@ -507,7 +507,7 @@ #define SUBTARGET_INIT_BUILTINS \ do { \ darwin_patch_builtins (); \ - rs6000_builtin_decls_x[(unsigned) (RS6000_BIF_CFSTRING)] \ + rs6000_builtin_decls[(unsigned) (RS6000_BIF_CFSTRING)] \ = darwin_init_cfstring_builtins ((unsigned) (RS6000_BIF_CFSTRING)); \ } while(0) |