From cd9bc6155956bff036592110899abc93bfa2916f Mon Sep 17 00:00:00 2001 From: "Searles, Mark" Date: Fri, 2 May 2025 14:31:42 -0700 Subject: [PATCH] Fix typos in warning msgs (#231) --- hipamd/bin/roc-obj | 2 +- hipamd/bin/roc-obj-extract | 4 ++-- hipamd/bin/roc-obj-ls | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hipamd/bin/roc-obj b/hipamd/bin/roc-obj index c5cf7509c6..3663850305 100755 --- a/hipamd/bin/roc-obj +++ b/hipamd/bin/roc-obj @@ -207,7 +207,7 @@ run_command() { } main() { - printf "Warning: These roc-obj tools are being DEPRECATED. Similar functionality is being provided by llvm-objdump in the rocm-llvm package.\n" + printf "Warning: The roc-obj tools have been DEPRECATED. Similar functionality is provided by llvm-objdump in the rocm-llvm package.\n" [[ -n $OPT_OUTDIR ]] && mkdir -p "$OPT_OUTDIR" local inputs=() diff --git a/hipamd/bin/roc-obj-extract b/hipamd/bin/roc-obj-extract index 9d8722f0ba..77ca7790a3 100755 --- a/hipamd/bin/roc-obj-extract +++ b/hipamd/bin/roc-obj-extract @@ -73,8 +73,8 @@ sub usage { my %options=(); getopts('vho:', \%options); -# this tool is being deprecated -print("Warning: This tool is being DEPRECATED. Similar funcitonality is provided in the rocm-llvm package with llvm-objdump.\n"); +# this tool has been deprecated +print("Warning: This tool has been DEPRECATED. Similar functionality is provided by llvm-objdump in the rocm-llvm package.\n"); if (defined $options{h}) { usage(); diff --git a/hipamd/bin/roc-obj-ls b/hipamd/bin/roc-obj-ls index eae047c9da..eba81d363a 100755 --- a/hipamd/bin/roc-obj-ls +++ b/hipamd/bin/roc-obj-ls @@ -59,8 +59,8 @@ if (defined $options{h}) { usage(); } -# this tool is being deprecated -print("Warning: This tool is being DEPRECATED. Similar funcitonality is provided in the rocm-llvm package with llvm-objdump.\n"); +# this tool has been deprecated +print("Warning: This tool has been DEPRECATED. Similar functionality is provided by llvm-objdump in the rocm-llvm package.\n"); my $verbose = $options{v}; my $debug = $options{d};