summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiang Liu <liuj97@gmail.com>2014-01-07 22:17:12 +0800
committerChanho Park <chanho61.park@samsung.com>2014-04-16 21:36:42 +0900
commita92c459c963d19bf657de7efa74a7eb582d8d295 (patch)
tree39651415b0687845126e301b10c7eb177f7482c0
parent7ec8a57ed46ecc28d7303d9655150dbfa8b92200 (diff)
downloadlinux-3.10-a92c459c963d19bf657de7efa74a7eb582d8d295.tar.gz
linux-3.10-a92c459c963d19bf657de7efa74a7eb582d8d295.tar.bz2
linux-3.10-a92c459c963d19bf657de7efa74a7eb582d8d295.zip
arm64, jump label: detect %c support for ARM64
As commit a9468f30b5eac6 "ARM: 7333/2: jump label: detect %c support for ARM", this patch detects the same thing for ARM64 because some ARM64 GCC versions have the same issue. Some versions of ARM64 GCC which do support asm goto, do not support the %c specifier. Since we need the %c to support jump labels on ARM64, detect that too in the asm goto detection script to avoid build errors with these versions. Acked-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Jiang Liu <liuj97@gmail.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
-rw-r--r--scripts/gcc-goto.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gcc-goto.sh b/scripts/gcc-goto.sh
index a2af2e88daf..c9469d34ecc 100644
--- a/scripts/gcc-goto.sh
+++ b/scripts/gcc-goto.sh
@@ -5,7 +5,7 @@
cat << "END" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y"
int main(void)
{
-#ifdef __arm__
+#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).