1276789Sdim/*===-- sync_fetch_and_umin_8.S - ------------------------------------------===//
2276789Sdim *
3276789Sdim *                     The LLVM Compiler Infrastructure
4276789Sdim *
5276789Sdim * This file is dual licensed under the MIT and the University of Illinois Open
6276789Sdim * Source Licenses. See LICENSE.TXT for details.
7276789Sdim *
8276789Sdim *===----------------------------------------------------------------------===//
9276789Sdim *
10276789Sdim * This file implements the __sync_fetch_and_umin_8 function for the ARM
11276789Sdim * architecture.
12276789Sdim *
13276789Sdim *===----------------------------------------------------------------------===*/
14276789Sdim
15276789Sdim#include "sync-ops.h"
16276789Sdim
17276789Sdim#if __ARM_ARCH_PROFILE != 'M'
18276789Sdim#define umin_8(rD_LO, rD_HI, rN_LO, rN_HI, rM_LO, rM_HI)         MINMAX_8(rD_LO, rD_HI, rN_LO, rN_HI, rM_LO, rM_HI, lo)
19276789Sdim
20276789SdimSYNC_OP_8(umin_8)
21276789Sdim#endif
22