| Index: test/CodeGen/linux-arm-atomic.c
|
| diff --git a/test/CodeGen/linux-arm-atomic.c b/test/CodeGen/linux-arm-atomic.c
|
| deleted file mode 100644
|
| index c7ce1d228bb5d3bd18c677831829859005b4e4df..0000000000000000000000000000000000000000
|
| --- a/test/CodeGen/linux-arm-atomic.c
|
| +++ /dev/null
|
| @@ -1,11 +0,0 @@
|
| -// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv7-unknown-linux | FileCheck %s
|
| -// RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-linux | FileCheck %s
|
| -// RUN: %clang_cc1 %s -emit-llvm -o - -triple=thumbv7-unknown-linux | FileCheck %s
|
| -
|
| -typedef int _Atomic_word;
|
| -_Atomic_word exchange_and_add(volatile _Atomic_word *__mem, int __val) {
|
| - return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL);
|
| -}
|
| -
|
| -// CHECK: define {{.*}} @exchange_and_add
|
| -// CHECK: atomicrmw {{.*}} add
|
|
|