Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 //===- subzero/src/IceClFlagsExtra.h - Extra Cl Flags -----------*- C++ -*-===// | 1 //===- subzero/src/IceClFlagsExtra.h - Extra Cl Flags -----------*- 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 // This file declares command line flags primarily used for non-minimal builds. | 10 // This file declares command line flags primarily used for non-minimal builds. |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 33 void setAlwaysExitSuccess(bool NewValue) { AlwaysExitSuccess = NewValue; } | 33 void setAlwaysExitSuccess(bool NewValue) { AlwaysExitSuccess = NewValue; } |
| 34 | 34 |
| 35 bool getBuildOnRead() const { return BuildOnRead; } | 35 bool getBuildOnRead() const { return BuildOnRead; } |
| 36 void setBuildOnRead(bool NewValue) { BuildOnRead = NewValue; } | 36 void setBuildOnRead(bool NewValue) { BuildOnRead = NewValue; } |
| 37 | 37 |
| 38 bool getGenerateBuildAtts() const { return GenerateBuildAtts; } | 38 bool getGenerateBuildAtts() const { return GenerateBuildAtts; } |
| 39 void setGenerateBuildAtts(bool NewValue) { GenerateBuildAtts = NewValue; } | 39 void setGenerateBuildAtts(bool NewValue) { GenerateBuildAtts = NewValue; } |
| 40 | 40 |
| 41 bool getLLVMVerboseErrors() const { return LLVMVerboseErrors; } | 41 bool getLLVMVerboseErrors() const { return LLVMVerboseErrors; } |
| 42 void setLLVMVerboseErrors(bool NewValue) { LLVMVerboseErrors = NewValue; } | 42 void setLLVMVerboseErrors(bool NewValue) { LLVMVerboseErrors = NewValue; } |
| 43 | |
|
Jim Stichnoth
2015/06/08 23:45:31
Restore blank line?
John
2015/06/09 15:36:18
Done.
| |
| 44 llvm::NaClFileFormat getInputFileFormat() const { return InputFileFormat; } | 43 llvm::NaClFileFormat getInputFileFormat() const { return InputFileFormat; } |
| 45 void setInputFileFormat(llvm::NaClFileFormat NewValue) { | 44 void setInputFileFormat(llvm::NaClFileFormat NewValue) { |
| 46 InputFileFormat = NewValue; | 45 InputFileFormat = NewValue; |
| 47 } | 46 } |
| 48 | 47 |
| 49 const IceString &getAppName() const { return AppName; } | 48 const IceString &getAppName() const { return AppName; } |
| 50 void setAppName(const IceString &NewValue) { AppName = NewValue; } | 49 void setAppName(const IceString &NewValue) { AppName = NewValue; } |
| 51 | 50 |
| 52 const IceString &getIRFilename() const { return IRFilename; } | 51 const IceString &getIRFilename() const { return IRFilename; } |
| 53 void setIRFilename(const IceString &NewValue) { IRFilename = NewValue; } | 52 void setIRFilename(const IceString &NewValue) { IRFilename = NewValue; } |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 70 | 69 |
| 71 IceString AppName; | 70 IceString AppName; |
| 72 IceString IRFilename; | 71 IceString IRFilename; |
| 73 IceString LogFilename; | 72 IceString LogFilename; |
| 74 IceString OutputFilename; | 73 IceString OutputFilename; |
| 75 }; | 74 }; |
| 76 | 75 |
| 77 } // end of namespace Ice | 76 } // end of namespace Ice |
| 78 | 77 |
| 79 #endif // SUBZERO_SRC_ICECLFLAGSEXTRA_H | 78 #endif // SUBZERO_SRC_ICECLFLAGSEXTRA_H |
| OLD | NEW |