• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===--- ExpressionTraits.h - C++ Expression Traits Support Enumerations ----*- C++ -*-===//
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 //  This file defines enumerations for expression traits intrinsics.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_CLANG_EXPRESSIONTRAITS_H
15 #define LLVM_CLANG_EXPRESSIONTRAITS_H
16 
17 namespace clang {
18 
19   enum ExpressionTrait {
20     ET_IsLValueExpr,
21     ET_IsRValueExpr
22   };
23 }
24 
25 #endif
26