aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.dg/atomic-store-5.c
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-10-13 16:28:19 -0700
committerDan Albert <danalbert@google.com>2015-10-13 16:28:19 -0700
commita8c075f72b231c37823661ba0d7d082a21cd39d9 (patch)
tree395aa3b848d56037292e50466643453485073018 /gcc-4.8/gcc/testsuite/gcc.dg/atomic-store-5.c
parent5aff2e0142aca13849b4e51de503e71d5010efa6 (diff)
downloadtoolchain_gcc-a8c075f72b231c37823661ba0d7d082a21cd39d9.tar.gz
toolchain_gcc-a8c075f72b231c37823661ba0d7d082a21cd39d9.tar.bz2
toolchain_gcc-a8c075f72b231c37823661ba0d7d082a21cd39d9.zip
Remove gcc-4.8.
Change-Id: Iee9c6985c613f58c82e33a91722d371579eb290f
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.dg/atomic-store-5.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.dg/atomic-store-5.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.dg/atomic-store-5.c b/gcc-4.8/gcc/testsuite/gcc.dg/atomic-store-5.c
deleted file mode 100644
index 763d29e24..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.dg/atomic-store-5.c
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Test __atomic routines for existence and proper execution on 16 byte
- values with each valid memory model. */
-/* { dg-do run } */
-/* { dg-require-effective-target sync_int_128_runtime } */
-/* { dg-options "-mcx16" { target { i?86-*-* x86_64-*-* } } } */
-
-/* Test the execution of the __atomic_store_n builtin for a 16 byte value. */
-
-extern void abort(void);
-
-__int128_t v, count;
-
-main ()
-{
- v = 0;
- count = 0;
-
- __atomic_store_n (&v, count + 1, __ATOMIC_RELAXED);
- if (v != ++count)
- abort ();
-
- __atomic_store_n (&v, count + 1, __ATOMIC_RELEASE);
- if (v != ++count)
- abort ();
-
- __atomic_store_n (&v, count + 1, __ATOMIC_SEQ_CST);
- if (v != ++count)
- abort ();
-
- /* Now test the generic variant. */
- count++;
-
- __atomic_store (&v, &count, __ATOMIC_RELAXED);
- if (v != count++)
- abort ();
-
- __atomic_store (&v, &count, __ATOMIC_RELEASE);
- if (v != count++)
- abort ();
-
- __atomic_store (&v, &count, __ATOMIC_SEQ_CST);
- if (v != count)
- abort ();
-
-
- return 0;
-}
-