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

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
« no previous file with comments | « src/IceAssemblerX86Base.h ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index d4d7737d844f5f3b5e4503314d9095ec415c3c6e..1072bd0bfb4282eefb850561521e453cdc334043 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -62,6 +62,11 @@ public:
bool getDecorateAsm() const { return DecorateAsm; }
void setDecorateAsm(bool NewValue) { DecorateAsm = NewValue; }
+ bool getDisableHybridAssembly() const { return DisableHybridAssembly; }
+ void setDisableHybridAssembly(bool NewValue) {
+ DisableHybridAssembly = NewValue;
+ }
+
bool getDisableInternal() const { return DisableInternal; }
void setDisableInternal(bool NewValue) { DisableInternal = NewValue; }
@@ -253,6 +258,7 @@ private:
bool AllowUninitializedGlobals;
bool DataSections;
bool DecorateAsm;
+ bool DisableHybridAssembly;
bool DisableInternal;
bool DisableIRGeneration;
bool DisableTranslation;
« no previous file with comments | « src/IceAssemblerX86Base.h ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698