Merge remote-tracking branches 'asoc/topic/mtk', 'asoc/topic/nau8540', 'asoc/topic...
[sfrench/cifs-2.6.git] / arch / ia64 / scripts / check-gas
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3 dir=$(dirname $0)
4 CC=$1
5 OBJDUMP=$2
6 tmp=${TMPDIR:-/tmp}
7 out=$tmp/out$$.o
8 $CC -c $dir/check-gas-asm.S -o $out
9 res=$($OBJDUMP -r --section .data $out | fgrep 00004 | tr -s ' ' |cut -f3 -d' ')
10 rm -f $out
11 if [ $res != ".text" ]; then
12         echo buggy
13 else
14         echo good
15 fi
16 exit 0