]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / llvm / tools / clang / lib / Sema / TargetAttributesSema.h
1 //===--- TargetAttributesSema.h - Semantic Analysis For Target Attributes -===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef CLANG_SEMA_TARGETSEMA_H
11 #define CLANG_SEMA_TARGETSEMA_H
12
13 namespace clang {
14   class Scope;
15   class Decl;
16   class AttributeList;
17   class Sema;
18
19   class TargetAttributesSema {
20   public:
21     virtual ~TargetAttributesSema();
22     virtual bool ProcessDeclAttribute(Scope *scope, Decl *D,
23                                       const AttributeList &Attr, Sema &S) const;
24   };
25 }
26
27 #endif