2 # Test for gcc 'asm goto' support
3 # Copyright (C) 2010, Jason Baron <jbaron@redhat.com>
5 cat << "END" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y"
8 #if defined(__arm__) || defined(__aarch64__)
10 * Not related to asm goto, but used by jump label
11 * and broken on some ARM GCC versions (see GCC Bug 48637).
13 static struct { int dummy; int state; } tp;
14 asm (".long %c0" :: "i" (&tp.state));
18 asm goto ("" :::: entry);