OLD | NEW |
(Empty) | |
| 1 //===- subzero/src/IceClFlags.h - Cl Flags for translation ------*- C++ -*-===// |
| 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), SubzeroTimingEnabled(false), |
| 23 DisableTranslation(false) {} |
| 24 bool DisableInternal; |
| 25 bool SubzeroTimingEnabled; |
| 26 bool DisableTranslation; |
| 27 }; |
| 28 } |
| 29 |
| 30 #endif // SUBZERO_SRC_ICECLFLAGS_H |
OLD | NEW |