#!/bin/sh # Test for gcc 'asm goto' support # Copyright (C) 2010, Jason Baron cat << "END" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y" int main(void) { #if defined(__arm__) || defined(__aarch64__) /* * Not related to asm goto, but used by jump label * and broken on some ARM GCC versions (see GCC Bug 48637). */ static struct { int dummy; int state; } tp; asm (".long %c0" :: "i" (&tp.state)); #endif entry: asm goto ("" :::: entry); return 0; } END
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2012-07-20staging: csr: remove CsrMemCmpGreg Kroah-Hartman1-1/+1
2012-07-20staging: csr: remove CsrUint32 typedefGreg Kroah-Hartman1-16/+16
2012-07-20staging: csr: remove CsrInt16 typedefGreg Kroah-Hartman1-1/+1
2012-07-20staging: csr: remove CsrUint16 typedefGreg Kroah-Hartman1-4/+4
2012-07-20staging: csr: remove CsrUint8 typedefGreg Kroah-Hartman1-6/+6
2012-06-19Staging: csr: update to version 5.1.0 of the driverGreg Kroah-Hartman1-12/+18
2012-06-19Staging: add CSR wifi moduleGreg Kroah-Hartman1-0/+535