//===----- AArch64ImmCheck.h -- ARM immediate range check -----*- C++ -*---===// // // 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 // //===----------------------------------------------------------------------===// /// \file /// This file implements the ImmCheck class which supports the range-checking of /// immediate values supplied to AArch64 SVE/SME and NEON intrinsics. /// //===----------------------------------------------------------------------===// #ifndef AARCH64_IMMCHECK_H #define AARCH64_IMMCHECK_H class ImmCheck { … }; #endif