]> git.proxmox.com Git - rustc.git/blame - src/compiler-rt/lib/builtins/arm/sync_fetch_and_and_4.S
New upstream version 1.19.0+dfsg3
[rustc.git] / src / compiler-rt / lib / builtins / arm / sync_fetch_and_and_4.S
CommitLineData
1a4d82fc
JJ
1/*===-- sync_fetch_and_and_4.S - ------------------------------------------===//
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
7 *
8 *===----------------------------------------------------------------------===//
9 *
10 * This file implements the __sync_fetch_and_and_4 function for the ARM
11 * architecture.
12 *
13 *===----------------------------------------------------------------------===*/
14
15#include "sync-ops.h"
16
17#define and_4(rD, rN, rM) and rD, rN, rM
18
19SYNC_OP_4(and_4)
3157f602
XL
20
21NO_EXEC_STACK_DIRECTIVE
22