clang API Documentation
00001 //===--- CapturedStmt.h - Types for CapturedStmts ---------------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 00011 #ifndef LLVM_CLANG_BASIC_CAPTUREDSTMT_H 00012 #define LLVM_CLANG_BASIC_CAPTUREDSTMT_H 00013 00014 namespace clang { 00015 00016 /// \brief The different kinds of captured statement. 00017 enum CapturedRegionKind { 00018 CR_Default, 00019 CR_OpenMP 00020 }; 00021 00022 } // end namespace clang 00023 00024 #endif // LLVM_CLANG_BASIC_CAPTUREDSTMT_H