xref: /freebsd/contrib/arm-optimized-routines/string/x86_64/check-arch.S (revision 7c31cdfa408a4ebce7a3e10d29056a15c28bc092)
1/*
2 * check ARCH setting.
3 *
4 * Copyright (c) 2020, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
6 */
7
8#if !__x86_64__
9# error ARCH setting does not match the compiler.
10#endif
11