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

Unified Diff: src/IceClFlags.h

Issue 567703003: Allow ability to name unnamed global addresses in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add tests Created 6 years, 3 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/IceConverter.cpp » ('j') | src/IceTranslator.cpp » ('J')
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 5cf534c0dec54901a706d84dfb12f16d28d4d77b..b2c233ce0f414aa89695c8bdfc70225d0a05edfc 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -21,13 +21,15 @@ public:
ClFlags()
: DisableInternal(false), SubzeroTimingEnabled(false),
DisableTranslation(false), DisableGlobals(false),
- FunctionSections(false), UseSandboxing(false) {}
+ FunctionSections(false), UseSandboxing(false),
+ DefaultGlobalPrefix("") {}
bool DisableInternal;
bool SubzeroTimingEnabled;
bool DisableTranslation;
bool DisableGlobals;
bool FunctionSections;
bool UseSandboxing;
+ std::string DefaultGlobalPrefix;
Jim Stichnoth 2014/09/11 22:08:19 1. I originally thought ClFlags was just for bool
Karl 2014/09/12 16:29:06 Both changes done.
};
} // end of namespace Ice
« no previous file with comments | « no previous file | src/IceConverter.cpp » ('j') | src/IceTranslator.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698