Revision 5e773fdc535cf3f4fa8023fe2ce20dcf774dae8a authored by Joe Perches on 15 November 2011, 13:56:14 UTC, committed by David S. Miller on 16 November 2011, 22:38:03 UTC
The first #include must be pch_gbe.h as it
does a #define of pr_fmt.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent eb2afd4
Raw File
gcc-goto.sh
#!/bin/sh
# Test for gcc 'asm goto' support
# Copyright (C) 2010, Jason Baron <jbaron@redhat.com>

echo "int main(void) { entry: asm goto (\"\"::::entry); return 0; }" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y"
back to top