Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:36:48

0001 //===----- Attr.h - Enum values for C Attribute Kinds ----------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 ///
0009 /// \file
0010 /// Defines the clang::attr::Kind enum.
0011 ///
0012 //===----------------------------------------------------------------------===//
0013 
0014 #ifndef LLVM_CLANG_BASIC_ATTRKINDS_H
0015 #define LLVM_CLANG_BASIC_ATTRKINDS_H
0016 
0017 namespace clang {
0018 
0019 namespace attr {
0020 
0021 // A list of all the recognized kinds of attributes.
0022 enum Kind {
0023 #define ATTR(X) X,
0024 #define ATTR_RANGE(CLASS, FIRST_NAME, LAST_NAME) \
0025   First##CLASS = FIRST_NAME,                    \
0026   Last##CLASS = LAST_NAME,
0027 #include "clang/Basic/AttrList.inc"
0028 };
0029 
0030 } // end namespace attr
0031 } // end namespace clang
0032 
0033 #endif