[HIPIFY] Rename -n to -examine

This commit is contained in:
Evgeny Mankov
2016-12-12 20:03:01 +03:00
parent 02468d31fc
commit 95ae514511
+2 -2
View File
@@ -2019,7 +2019,7 @@ static cl::opt<bool> PrintStats("print-stats",
cl::value_desc("print-stats"),
cl::cat(ToolTemplateCategory));
static cl::opt<bool> N("n",
static cl::opt<bool> Examine("examine",
cl::desc("Combines -no-output and -print-stats options"),
cl::value_desc("n"),
cl::cat(ToolTemplateCategory));
@@ -2123,7 +2123,7 @@ int main(int argc, const char **argv) {
return 1;
}
}
if (N) {
if (Examine) {
NoOutput = PrintStats = true;
}
int Result = 0;