aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/asm-y.c
blob: 7d5a6a6179504f4846b3d23c14605b01165c9f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */
/* { dg-options "-O1" } */

/* Test that %yN does not cause an internal error if used incorrectly.  */

int f(int *a)
{
  asm ("#%y0" : "=m"(a[2])); /* { dg-error "try using the 'Z' constraint" } */
  asm ("#%y0" : "=m"(a[1])); /* { dg-error "try using the 'Z' constraint" } */
  asm ("#%y0" : "=m"(a[0]));
}