diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-09-03 09:29:01 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-09-03 09:29:01 +0530 |
commit | 6c8bbad92726eeb50c9bb4107dad80155062eb0a (patch) | |
tree | 668cb7fc9fb6e93914a49660c6ed9733801e619b /nptl/tst-cleanup2.c | |
parent | 18d4371683fbe347bf4fbaef05d18b5a4918887a (diff) | |
download | glibc-6c8bbad92726eeb50c9bb4107dad80155062eb0a.tar glibc-6c8bbad92726eeb50c9bb4107dad80155062eb0a.tar.gz glibc-6c8bbad92726eeb50c9bb4107dad80155062eb0a.tar.bz2 glibc-6c8bbad92726eeb50c9bb4107dad80155062eb0a.zip |
Mark success return value as volatile to work around rescheduling
Resolves #15921
The test case nptl/tst-cleanup2 fails on s390x and power6 due to
instruction sheduling in gcc. This was reported in gcc:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58034
but it was concluded that gcc is allowed to assume that the first
argument to sprintf is a character array - NULL not being a valid
character array.
Diffstat (limited to 'nptl/tst-cleanup2.c')
-rw-r--r-- | nptl/tst-cleanup2.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/nptl/tst-cleanup2.c b/nptl/tst-cleanup2.c index 5bd16095a6..65af0f2018 100644 --- a/nptl/tst-cleanup2.c +++ b/nptl/tst-cleanup2.c @@ -34,6 +34,12 @@ static int do_test (void) { char *p = NULL; + /* gcc can overwrite the success written value by scheduling instructions + around sprintf. It is allowed to do this since according to C99 the first + argument of sprintf is a character array and NULL is not a valid character + array. Mark the return value as volatile so that it gets reloaded on + return. */ + volatile int ret = 0; struct sigaction sa; sa.sa_handler = sig_handler; @@ -50,7 +56,7 @@ do_test (void) if (setjmp (jmpbuf)) { puts ("Exiting main..."); - return 0; + return ret; } sprintf (p, "This should segv\n"); |