|
From: <sv...@va...> - 2011-03-14 09:53:53
|
Author: sewardj
Date: 2011-03-14 09:53:44 +0000 (Mon, 14 Mar 2011)
New Revision: 11643
Log:
Build fix for older s390x-linux assemblers. Fixes #264800.
(Florian Krohm, br...@ac...)
Modified:
trunk/helgrind/tests/tc03_re_excl.c
Modified: trunk/helgrind/tests/tc03_re_excl.c
===================================================================
--- trunk/helgrind/tests/tc03_re_excl.c 2011-03-13 12:02:44 UTC (rev 11642)
+++ trunk/helgrind/tests/tc03_re_excl.c 2011-03-14 09:53:44 UTC (rev 11643)
@@ -10,7 +10,7 @@
/* A simple function to "use" a value, so that gcc can't
possibly optimise it into nothing. */
static void use ( int x ) {
- __asm__ __volatile__( "nop" : : "r"(x) : "cc","memory" );
+ __asm__ __volatile__( "" : : "r"(x) : "cc","memory" );
}
static void* worker_thread ( void* argV )
|