Index: src/IceClFlagsExtra.h |
diff --git a/src/IceClFlagsExtra.h b/src/IceClFlagsExtra.h |
index b105138accaf76e942410de1eb85f113a14973f8..46000e3eb67f1d31b5748d4f5475fb6419ea518e 100644 |
--- a/src/IceClFlagsExtra.h |
+++ b/src/IceClFlagsExtra.h |
@@ -43,6 +43,9 @@ public: |
bool getLLVMVerboseErrors() const { return LLVMVerboseErrors; } |
void setLLVMVerboseErrors(bool NewValue) { LLVMVerboseErrors = NewValue; } |
+ bool getBitcodeAsText() const { return BitcodeAsText; } |
+ void setBitcodeAsText(bool NewValue) { BitcodeAsText = NewValue; } |
+ |
llvm::NaClFileFormat getInputFileFormat() const { return InputFileFormat; } |
void setInputFileFormat(llvm::NaClFileFormat NewValue) { |
InputFileFormat = NewValue; |
@@ -64,6 +67,7 @@ public: |
private: |
bool AlwaysExitSuccess = false; |
+ bool BitcodeAsText = false; |
bool BuildOnRead = false; |
bool GenerateBuildAtts = false; |
bool LLVMVerboseErrors = false; |