summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2018-11-07 10:55:04 +0000
committerLionel Landwerlin <[email protected]>2018-11-07 11:27:38 +0000
commite262cc03539ca40085abba905cce99c10a34a7e7 (patch)
tree9e05e77fa74ed5de4902019f0b48a33a5d6b3013
parent0a0aa2ba6c37085948cc7efe11695ebe4fdf12fe (diff)
intel/dump_gpu: move output option together
Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
-rwxr-xr-xsrc/intel/tools/intel_dump_gpu.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/intel/tools/intel_dump_gpu.in b/src/intel/tools/intel_dump_gpu.in
index a1d92bb9bfa..73bef9c337b 100755
--- a/src/intel/tools/intel_dump_gpu.in
+++ b/src/intel/tools/intel_dump_gpu.in
@@ -37,11 +37,6 @@ function add_arg() {
while true; do
case "$1" in
- -o)
- file=$2
- add_arg "file=${file:-$(basename ${file}).aub}"
- shift 2
- ;;
-v)
add_arg "verbose=1"
shift 1
@@ -50,6 +45,11 @@ while true; do
add_arg "verbose=2"
shift 1
;;
+ -o)
+ file=$2
+ add_arg "file=${file:-$(basename ${file}).aub}"
+ shift 2
+ ;;
-o*)
file=${1##-o}
add_arg "file=${file:-$(basename ${file}).aub}"