Source
1
1
#!/bin/sh
2
2
# SPDX-License-Identifier: GPL-2.0
3
3
# Test for gcc 'asm goto' support
4
4
# Copyright (C) 2010, Jason Baron <jbaron@redhat.com>
5
5
​
6
-
cat << "END" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y"
6
+
cat << "END" | $@ -x c - -fno-PIE -c -o /dev/null
7
7
int main(void)
8
8
{
9
9
#if defined(__arm__) || defined(__aarch64__)
10
10
/*
11
11
* Not related to asm goto, but used by jump label
12
12
* and broken on some ARM GCC versions (see GCC Bug 48637).
13
13
*/
14
14
static struct { int dummy; int state; } tp;
15
15
asm (".long %c0" :: "i" (&tp.state));
16
16
#endif