diff options
Diffstat (limited to 'libatomic/testsuite/libatomic.c/atomic-store-4.c')
-rw-r--r-- | libatomic/testsuite/libatomic.c/atomic-store-4.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libatomic/testsuite/libatomic.c/atomic-store-4.c b/libatomic/testsuite/libatomic.c/atomic-store-4.c index 0863be99d01..a69b9d07896 100644 --- a/libatomic/testsuite/libatomic.c/atomic-store-4.c +++ b/libatomic/testsuite/libatomic.c/atomic-store-4.c @@ -1,9 +1,7 @@ /* Test __atomic routines for existence and proper execution on 8 byte values with each valid memory model. */ /* { dg-do run } */ -/* { dg-require-effective-target sync_long_long_runtime } */ /* { dg-options "" } */ -/* { dg-options "-march=pentium" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */ /* Test the execution of the __atomic_store_n builtin for a long long. */ @@ -11,6 +9,7 @@ extern void abort(void); long long v, count; +int main () { v = 0; |