OLD | NEW |
(Empty) | |
| 1 //===- subzero/src/IceClFlags.h - Cl Flags controlling translation --------===// |
| 2 // |
| 3 // The Subzero Code Generator |
| 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 declares command line flags controlling translation. |
| 11 // |
| 12 //===----------------------------------------------------------------------===// |
| 13 |
| 14 #ifndef SUBZERO_SRC_ICECLFLAGS_H |
| 15 #define SUBZERO_SRC_ICECLFLAGS_H |
| 16 |
| 17 namespace Ice { |
| 18 |
| 19 class ClFlags { |
| 20 public: |
| 21 ClFlags() |
| 22 : DisableInternal(false), |
| 23 SubzeroTimingEnabled(false), |
| 24 DisableTranslation(false) |
| 25 {} |
| 26 bool DisableInternal; |
| 27 bool SubzeroTimingEnabled; |
| 28 bool DisableTranslation; |
| 29 }; |
| 30 |
| 31 } |
| 32 |
| 33 #endif // SUBZERO_SRC_ICECLFLAGS_H |
OLD | NEW |