libgcc: increase required stack space for x86_64 -fsplit-stack
authorIan Lance Taylor <iant@golang.org>
Mon, 3 Aug 2020 22:59:45 +0000 (15:59 -0700)
committerIan Lance Taylor <iant@golang.org>
Mon, 3 Aug 2020 23:01:59 +0000 (16:01 -0700)
This accomodates increased space required by use of the xsavec
instruction in the dynamic linker trampoline.

libgcc/ChangeLog:

* config/i386/morestack.S (BACKOFF) [x86_64]: Add 2048 bytes.

libgcc/config/i386/morestack.S

index 519bbbc..1c31783 100644 (file)
@@ -79,7 +79,7 @@
 #ifndef __x86_64__
 #define BACKOFF (1024)
 #else
-#define BACKOFF (1536)
+#define BACKOFF (3584)
 #endif