diff options
author | 2020-08-10 21:14:10 +0000 | |
---|---|---|
committer | 2020-08-10 21:14:10 +0000 | |
commit | f2119caf99b8ed409235597050ceebdc9102f562 (patch) | |
tree | cfb90cfe994f47cfaf95506823ca0dac2d08b04d /lib/libcompiler_rt/arm/sync_fetch_and_and_8.S | |
parent | Un-hook and re-hook libcompiler_rt. (diff) | |
download | wireguard-openbsd-f2119caf99b8ed409235597050ceebdc9102f562.tar.xz wireguard-openbsd-f2119caf99b8ed409235597050ceebdc9102f562.zip |
Tedu compiler-rt 8.0.1.
Diffstat (limited to 'lib/libcompiler_rt/arm/sync_fetch_and_and_8.S')
-rw-r--r-- | lib/libcompiler_rt/arm/sync_fetch_and_and_8.S | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/libcompiler_rt/arm/sync_fetch_and_and_8.S b/lib/libcompiler_rt/arm/sync_fetch_and_and_8.S deleted file mode 100644 index 4f7b5ca7ab2..00000000000 --- a/lib/libcompiler_rt/arm/sync_fetch_and_and_8.S +++ /dev/null @@ -1,26 +0,0 @@ -/*===-- sync_fetch_and_and_8.S - ------------------------------------------===// - * - * The LLVM Compiler Infrastructure - * - * This file is dual licensed under the MIT and the University of Illinois Open - * Source Licenses. See LICENSE.TXT for details. - * - *===----------------------------------------------------------------------===// - * - * This file implements the __sync_fetch_and_and_8 function for the ARM - * architecture. - * - *===----------------------------------------------------------------------===*/ - -#include "sync-ops.h" - -#if __ARM_ARCH_PROFILE != 'M' -#define and_8(rD_LO, rD_HI, rN_LO, rN_HI, rM_LO, rM_HI) \ - and rD_LO, rN_LO, rM_LO ; \ - and rD_HI, rN_HI, rM_HI - -SYNC_OP_8(and_8) -#endif - -NO_EXEC_STACK_DIRECTIVE - |