gcc/libgcc/config/sparc/t-sparc
Alexandre Oliva 9fa35dbb90 strub: sparc: omit frame in strub_leave [PR112917]
If we allow __strub_leave to allocate a frame on sparc, it will
overlap with a lot of the stack range we're supposed to scrub, because
of the large fixed-size outgoing args and register save area.
Unfortunately, setting up the PIC register seems to prevent the frame
pointer from being omitted.

Since the strub runtime doesn't issue calls or use global variables,
at least on sparc, disabling PIC to compile strub.c seems to do the
right thing.


for  libgcc/ChangeLog

	PR middle-end/112917
	* config.host (sparc, sparc64): Enable...
	* config/sparc/t-sparc: ... this new fragment.
2023-12-20 05:18:17 -03:00

4 lines
257 B
Text

# This is needed for __strub_leave to omit the frame pointer, without
# which it will allocate a register save area on the stack and leave
# it unscrubbed and most likely unused, because it's a leaf function.
CFLAGS-strub.c += -fno-PIC -fomit-frame-pointer