chromium/third_party/llvm-build/Release+Asserts/lib/clang/20/include/rtmintrin.h

/*===---- rtmintrin.h - RTM intrinsics -------------------------------------===
 *
 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 * See https://llvm.org/LICENSE.txt for license information.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 *
 *===-----------------------------------------------------------------------===
 */

#ifndef __IMMINTRIN_H
#error "Never use <rtmintrin.h> directly; include <immintrin.h> instead."
#endif

#ifndef __RTMINTRIN_H
#define __RTMINTRIN_H

#define _XBEGIN_STARTED
#define _XABORT_EXPLICIT
#define _XABORT_RETRY
#define _XABORT_CONFLICT
#define _XABORT_CAPACITY
#define _XABORT_DEBUG
#define _XABORT_NESTED
#define _XABORT_CODE(x)

/* Define the default attributes for the functions in this file. */
#define __DEFAULT_FN_ATTRS

static __inline__ unsigned int __DEFAULT_FN_ATTRS
_xbegin(void)
{}

static __inline__ void __DEFAULT_FN_ATTRS
_xend(void)
{}

#define _xabort(imm)

#undef __DEFAULT_FN_ATTRS

#endif /* __RTMINTRIN_H */