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

Unified Diff: src/IceClFlags.h

Issue 1418523002: Add hybrid assembler concept to ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 2 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/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index d4d7737d844f5f3b5e4503314d9095ec415c3c6e..24f77b30c92dbde85a87056dc45bed125b45dd84 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -46,6 +46,9 @@ public:
AllowExternDefinedSymbols = NewValue;
}
+ bool getAllowHybridAssembly() const { return AllowHybridAssembly; }
+ void setAllowHybridAssembly(bool NewValue) { AllowHybridAssembly = NewValue; }
+
bool getAllowIacaMarks() const { return AllowIacaMarks; }
void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; }
@@ -249,6 +252,7 @@ public:
private:
bool AllowErrorRecovery;
bool AllowExternDefinedSymbols;
+ bool AllowHybridAssembly;
Jim Stichnoth 2015/10/21 01:13:38 Possible suggestion, if you agree. It might be us
bool AllowIacaMarks;
bool AllowUninitializedGlobals;
bool DataSections;
« src/IceAssemblerARM32.h ('K') | « src/IceAssemblerX86Base.h ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698