check-gas 312 B

1234567891011121314151617
  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