From b2377f20ba91f0ff99370fee6a5d4d0284631bef Mon Sep 17 00:00:00 2001 From: Evgeny Mankov Date: Mon, 12 Dec 2016 20:03:01 +0300 Subject: [PATCH] [HIPIFY] Rename -n to -examine [ROCm/hip commit: 95ae5145118a804170bf6aef0c40406be6691f42] --- projects/hip/hipify-clang/src/Cuda2Hip.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/hip/hipify-clang/src/Cuda2Hip.cpp b/projects/hip/hipify-clang/src/Cuda2Hip.cpp index 31da2537cb..b4e364c52f 100644 --- a/projects/hip/hipify-clang/src/Cuda2Hip.cpp +++ b/projects/hip/hipify-clang/src/Cuda2Hip.cpp @@ -2019,7 +2019,7 @@ static cl::opt PrintStats("print-stats", cl::value_desc("print-stats"), cl::cat(ToolTemplateCategory)); -static cl::opt N("n", +static cl::opt 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;