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

Unified Diff: src/IceClFlags.h

Issue 1387963002: Make sure that all globals are internal, except for "start" functions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Ready for review. 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 | « no previous file | 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 87e16cd5201b9923a4066e921bd108ec454b08e8..afefd07b1f056939975ef5f1bd3c91d1b1be5abc 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -39,6 +39,13 @@ public:
bool getAllowErrorRecovery() const { return AllowErrorRecovery; }
void setAllowErrorRecovery(bool NewValue) { AllowErrorRecovery = NewValue; }
+ bool getAllowExternDefinedSymbols() const {
+ return AllowExternDefinedSymbols;
+ }
+ void setAllowExternDefinedSymbols(bool NewValue) {
+ AllowExternDefinedSymbols = NewValue;
+ }
+
bool getAllowIacaMarks() const { return AllowIacaMarks; }
void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; }
@@ -238,6 +245,7 @@ public:
private:
bool AllowErrorRecovery;
+ bool AllowExternDefinedSymbols = false;
John 2015/10/06 19:30:15 I have mixed feelings about this initialization he
Jim Stichnoth 2015/10/06 20:16:21 I agree that there should be consistency here.
Karl 2015/10/06 21:47:18 Done.
bool AllowIacaMarks;
bool AllowUninitializedGlobals;
bool DataSections;
« no previous file with comments | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698