//===--- LoopHint.h - Types for LoopHint ------------------------*- 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_PARSE_LOOPHINT_H #define LLVM_CLANG_PARSE_LOOPHINT_H #include "clang/Basic/SourceLocation.h" namespace clang { class Expr; struct IdentifierLoc; /// Loop optimization hint for loop and unroll pragmas. struct LoopHint { … }; } // end namespace clang #endif // LLVM_CLANG_PARSE_LOOPHINT_H