Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 //===- subzero/src/IceClFlags.h - Cl Flags for translation ------*- C++ -*-===// | 1 //===- subzero/src/IceClFlags.h - Cl Flags for translation ------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 140 bool getGenerateUnitTestMessages() const { | 140 bool getGenerateUnitTestMessages() const { |
| 141 return !BuildDefs::dump() || GenerateUnitTestMessages; | 141 return !BuildDefs::dump() || GenerateUnitTestMessages; |
| 142 } | 142 } |
| 143 /// Set ClFlags::GenerateUnitTestMessages to a new value | 143 /// Set ClFlags::GenerateUnitTestMessages to a new value |
| 144 void setGenerateUnitTestMessages(bool NewValue) { | 144 void setGenerateUnitTestMessages(bool NewValue) { |
| 145 GenerateUnitTestMessages = NewValue; | 145 GenerateUnitTestMessages = NewValue; |
| 146 } | 146 } |
| 147 | 147 |
| 148 private: | 148 private: |
| 149 std::string AppName; | 149 std::string AppName; |
| 150 | |
|
John
2016/03/29 14:23:15
optional: add the empty line back
Jim Stichnoth
2016/03/29 21:40:49
Done.
| |
| 151 /// Initialized to false; not set by the command line. | 150 /// Initialized to false; not set by the command line. |
| 152 bool GenerateUnitTestMessages; | 151 bool GenerateUnitTestMessages; |
| 153 }; | 152 }; |
| 154 | 153 |
| 155 } // end of namespace Ice | 154 } // end of namespace Ice |
| 156 | 155 |
| 157 #endif // SUBZERO_SRC_ICECLFLAGS_H | 156 #endif // SUBZERO_SRC_ICECLFLAGS_H |
| OLD | NEW |