You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
3 years ago
|
diff -Nrup libiberty/acinclude.m4 libiberty/aclocal.m4
|
||
|
--- libiberty/acinclude.m4.orig 2021-07-24 20:41:34.037240447 +0100
|
||
|
+++ libiberty/acinclude.m4 2021-07-24 20:42:08.993997401 +0100
|
||
|
@@ -157,7 +157,7 @@
|
||
|
fi
|
||
|
|
||
|
AC_CACHE_CHECK(stack direction for C alloca, ac_cv_c_stack_direction,
|
||
|
-[AC_TRY_RUN([find_stack_direction ()
|
||
|
+[AC_TRY_RUN([__attribute__ ((noclone,noinline)) find_stack_direction ()
|
||
|
{
|
||
|
static char *addr = 0;
|
||
|
auto char dummy;
|
||
|
diff --git config/intdiv0.m4 b//config/intdiv0.m4
|
||
|
index 55dddcf1..ba906efc 100644
|
||
|
--- config/intdiv0.m4
|
||
|
+++ config/intdiv0.m4
|
||
|
@@ -31,10 +31,10 @@ sigfpe_handler (sig) int sig;
|
||
|
exit (sig != SIGFPE);
|
||
|
}
|
||
|
|
||
|
-int x = 1;
|
||
|
-int y = 0;
|
||
|
-int z;
|
||
|
-int nan;
|
||
|
+volatile int x = 1;
|
||
|
+volatile int y = 0;
|
||
|
+volatile int z;
|
||
|
+volatile int nan;
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
diff --git libiberty/configure.ac libiberty/configure.ac
|
||
|
index f1ce7601..fc20d228 100644
|
||
|
--- libiberty/configure.ac
|
||
|
+++ libiberty/configure.ac
|
||
|
@@ -661,7 +661,7 @@ if test -z "${setobjs}"; then
|
||
|
for v in $vars; do
|
||
|
AC_MSG_CHECKING([for $v])
|
||
|
AC_CACHE_VAL(libiberty_cv_var_$v,
|
||
|
- [AC_LINK_IFELSE([AC_LANG_PROGRAM([[int *p;]],[[extern int $v []; p = $v;]])],
|
||
|
+ [AC_LINK_IFELSE([AC_LANG_PROGRAM([[__attribute__ ((used)) int *p;]],[[extern int $v []; p = $v;]])],
|
||
|
[eval "libiberty_cv_var_$v=yes"],
|
||
|
[eval "libiberty_cv_var_$v=no"])])
|
||
|
if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
|