Commit 5e5cbbfb by Adam Nemet Committed by Adam Nemet

lynx.h: Mark __do_global_ctors_aux and __do_global_dtors_aux longcall.

	* config/rs6000/lynx.h: Mark __do_global_ctors_aux and
	__do_global_dtors_aux longcall.

From-SVN: r102218
parent 3a9d5f26
2005-07-20 Adam Nemet <anemet@lnxw.com>
* config/rs6000/lynx.h: Mark __do_global_ctors_aux and
__do_global_dtors_aux longcall.
2005-07-20 Kazu Hirata <kazu@cs.umass.edu>
* gensupport.c (old_preds): Don't reference PREDICATE_CODES.
......
......@@ -106,3 +106,20 @@
#undef HAVE_AS_TLS
#define HAVE_AS_TLS 0
#ifdef CRT_BEGIN
/* This function is part of crtbegin*.o which is at the beginning of
the link and is called from .fini which is usually toward the end
of the executable. Make it longcall so that we don't limit the
text size of the executables to 32M. */
static void __do_global_dtors_aux (void) __attribute__ ((longcall));
#endif /* CRT_BEGIN */
#ifdef CRT_END
/* Similarly here. This function resides in crtend*.o which is toward
to end of the link and is called from .init which is at the
beginning. */
static void __do_global_ctors_aux (void) __attribute__ ((longcall));
#endif /* CRT_END */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment