diff options
author | Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com> | 2020-07-10 19:41:06 -0300 |
---|---|---|
committer | Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com> | 2020-07-10 19:41:06 -0300 |
commit | 7c7bcf3634e44cf7e001aaa302138c1ee0e58f8c (patch) | |
tree | efc90e1b49ce51b1ec962f034ca6ba872ad3c6c7 /config.h.in | |
parent | 936c9666aed6747f7a76221118f7cf59100075e6 (diff) | |
download | glibc-7c7bcf3634e44cf7e001aaa302138c1ee0e58f8c.tar.gz glibc-7c7bcf3634e44cf7e001aaa302138c1ee0e58f8c.tar.xz glibc-7c7bcf3634e44cf7e001aaa302138c1ee0e58f8c.zip |
powerpc64: Fix calls when r2 is not used [BZ #26173]
Teach the linker that __mcount_internal, __sigjmp_save_symbol, __syscall_error and __GI_exit do not use r2, so that it does not need to recover r2 after the call. Test at configure time if the assembler supports @notoc and define USE_PPC64_NOTOC.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index d5e1f6819e..8dea97f625 100644 --- a/config.h.in +++ b/config.h.in @@ -20,6 +20,9 @@ /* On powerpc64, use overlapping .opd entries. */ #undef USE_PPC64_OVERLAPPING_OPD +/* On powerpc64, use @notoc. */ +#undef USE_PPC64_NOTOC + /* Define if _Unwind_Find_FDE should be exported from glibc. */ #undef EXPORT_UNWIND_FIND_FDE |