Blame view

scripts/gcc-goto.sh 495 Bytes
bf5438fca   Jason Baron   jump label: Base ...
1
  #!/bin/sh
df0a92c20   Jonathan Neuschäfer   scripts/gcc-goto....
2
  # Test for gcc 'asm goto' support
bf5438fca   Jason Baron   jump label: Base ...
3
  # Copyright (C) 2010, Jason Baron <jbaron@redhat.com>
a9468f30b   Rabin Vincent   ARM: 7333/2: jump...
4
5
6
  cat << "END" | $@ -x c - -c -o /dev/null >/dev/null 2>&1 && echo "y"
  int main(void)
  {
f3c003f72   Jiang Liu   arm64, jump label...
7
  #if defined(__arm__) || defined(__aarch64__)
a9468f30b   Rabin Vincent   ARM: 7333/2: jump...
8
9
10
11
12
13
14
15
16
17
18
19
20
  	/*
  	 * 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