Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: src/IceClFlags.h

Issue 1341423002: Reflow comments to use the full width. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix spelling and rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 bool getEnableBlockProfile() const { return EnableBlockProfile; } 72 bool getEnableBlockProfile() const { return EnableBlockProfile; }
73 void setEnableBlockProfile(bool NewValue) { EnableBlockProfile = NewValue; } 73 void setEnableBlockProfile(bool NewValue) { EnableBlockProfile = NewValue; }
74 74
75 bool getForceMemIntrinOpt() const { return ForceMemIntrinOpt; } 75 bool getForceMemIntrinOpt() const { return ForceMemIntrinOpt; }
76 void setForceMemIntrinOpt(bool NewValue) { ForceMemIntrinOpt = NewValue; } 76 void setForceMemIntrinOpt(bool NewValue) { ForceMemIntrinOpt = NewValue; }
77 77
78 bool getFunctionSections() const { return FunctionSections; } 78 bool getFunctionSections() const { return FunctionSections; }
79 void setFunctionSections(bool NewValue) { FunctionSections = NewValue; } 79 void setFunctionSections(bool NewValue) { FunctionSections = NewValue; }
80 80
81 bool getGenerateUnitTestMessages() const { 81 bool getGenerateUnitTestMessages() const {
82 // Note: If dump routines have been turned off, the error messages 82 // Note: If dump routines have been turned off, the error messages will not
83 // will not be readable. Hence, turn off. 83 // be readable. Hence, turn off.
84 return !BuildDefs::dump() || GenerateUnitTestMessages; 84 return !BuildDefs::dump() || GenerateUnitTestMessages;
85 } 85 }
86 void setGenerateUnitTestMessages(bool NewValue) { 86 void setGenerateUnitTestMessages(bool NewValue) {
87 GenerateUnitTestMessages = NewValue; 87 GenerateUnitTestMessages = NewValue;
88 } 88 }
89 89
90 bool getMockBoundsCheck() const { return MockBoundsCheck; } 90 bool getMockBoundsCheck() const { return MockBoundsCheck; }
91 void setMockBoundsCheck(bool NewValue) { MockBoundsCheck = NewValue; } 91 void setMockBoundsCheck(bool NewValue) { MockBoundsCheck = NewValue; }
92 92
93 bool getPhiEdgeSplit() const { return PhiEdgeSplit; } 93 bool getPhiEdgeSplit() const { return PhiEdgeSplit; }
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 IceString TranslateOnly; 282 IceString TranslateOnly;
283 IceString VerboseFocusOn; 283 IceString VerboseFocusOn;
284 284
285 size_t NumTranslationThreads; // 0 means completely sequential 285 size_t NumTranslationThreads; // 0 means completely sequential
286 uint64_t RandomSeed; 286 uint64_t RandomSeed;
287 }; 287 };
288 288
289 } // end of namespace Ice 289 } // end of namespace Ice
290 290
291 #endif // SUBZERO_SRC_ICECLFLAGS_H 291 #endif // SUBZERO_SRC_ICECLFLAGS_H
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698