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

Unified Diff: src/IceClFlagsExtra.h

Issue 1215463014: Modify how textual bitcode is injected into pnacl-sz. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: src/IceClFlagsExtra.h
diff --git a/src/IceClFlagsExtra.h b/src/IceClFlagsExtra.h
index b105138accaf76e942410de1eb85f113a14973f8..63345f5975487b57c4d2b7e2cfdf8c64bed8f51f 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;
@@ -67,6 +70,7 @@ private:
bool BuildOnRead = false;
bool GenerateBuildAtts = false;
bool LLVMVerboseErrors = false;
+ bool BitcodeAsText = false;
jvoung (off chromium) 2015/07/22 21:20:45 sort?
Karl 2015/07/22 21:58:16 Done.
llvm::NaClFileFormat InputFileFormat = llvm::LLVMFormat;

Powered by Google App Engine
This is Rietveld 408576698