[PATCH 2/3] contrib/regression/btest-gcc.sh: Simplify option handling.
Hans-Peter Nilsson
hp@axis.com
Thu Nov 23 17:08:20 GMT 2023
Tested as with the previous patch.
-- >8 --
* btest-gcc.sh (Option handling): Break out shifts from each
option alternative.
---
contrib/regression/btest-gcc.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/contrib/regression/btest-gcc.sh b/contrib/regression/btest-gcc.sh
index 22e8f0398662..3c031e93709b 100755
--- a/contrib/regression/btest-gcc.sh
+++ b/contrib/regression/btest-gcc.sh
@@ -32,12 +32,13 @@ dashj=''
while : ; do
case "$1" in
--add-passes-despite-regression)
- add_passes_despite_regression=1; shift;;
+ add_passes_despite_regression=1;;
-j*)
- dashj=$1; shift;;
+ dashj=$1;;
-*) echo "Invalid option: $1"; exit 2;;
*) break;;
esac
+ shift
done
# TARGET is the target triplet. It should be the same one as used in
--
2.30.2
More information about the Gcc-patches
mailing list