diff options
Diffstat (limited to 'ANDROID_3.4.5/arch/ia64/scripts/check-gas')
-rwxr-xr-x | ANDROID_3.4.5/arch/ia64/scripts/check-gas | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/ANDROID_3.4.5/arch/ia64/scripts/check-gas b/ANDROID_3.4.5/arch/ia64/scripts/check-gas deleted file mode 100755 index 2499e0b2..00000000 --- a/ANDROID_3.4.5/arch/ia64/scripts/check-gas +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -dir=$(dirname $0) -CC=$1 -OBJDUMP=$2 -tmp=${TMPDIR:-/tmp} -out=$tmp/out$$.o -$CC -c $dir/check-gas-asm.S -o $out -res=$($OBJDUMP -r --section .data $out | fgrep 00004 | tr -s ' ' |cut -f3 -d' ') -rm -f $out -if [ $res != ".text" ]; then - echo buggy -else - echo good -fi -exit 0 |