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

Unified Diff: src/IceClFlags.cpp

Issue 1408023004: Subzero: Add -allow-extern as an alias for --allow-externally-defined-symbols. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: 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/IceConverter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceClFlags.cpp
diff --git a/src/IceClFlags.cpp b/src/IceClFlags.cpp
index 8fd50c70e86a816850a9579cc9df7bcd59d65706..7ee52280361d9b6169c00ab426e6f7b06f8d40d7 100644
--- a/src/IceClFlags.cpp
+++ b/src/IceClFlags.cpp
@@ -40,6 +40,10 @@ cl::opt<bool> AllowExternDefinedSymbols(
"and __pnacl_pso_root)."),
cl::init(false));
+cl::alias AllowExternDefinedSymbolsA(
+ "allow-extern", cl::desc("Alias for --allow-externally-defined-symbols"),
+ cl::NotHidden, cl::aliasopt(AllowExternDefinedSymbols));
+
cl::opt<bool> AllowIacaMarks(
"allow-iaca-marks",
cl::desc("Allow IACA (Intel Architecture Code Analyzer) marks to be "
@@ -216,7 +220,7 @@ cl::opt<bool> UseSandboxing("sandbox", cl::desc("Use sandboxing"));
cl::opt<std::string> VerboseFocusOn(
"verbose-focus",
- cl::desc("Temporarily enable full verbosity for a specific function"),
+ cl::desc("Override with -verbose=none except for the specified function"),
cl::init(""));
cl::opt<Ice::FileType> OutFileType(
« no previous file with comments | « no previous file | src/IceConverter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698