mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
6 lines
223 B
Bash
6 lines
223 B
Bash
|
#!/bin/sh
|
||
|
# Test for gcc 'asm goto' suport
|
||
|
# Copyright (C) 2010, Jason Baron <jbaron@redhat.com>
|
||
|
|
||
|
echo "int main(void) { entry: asm goto (\"\"::::entry); return 0; }" | $1 -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y"
|