aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/register-var-1.c
blob: a27d56c4b6695a63c7c79f15a27cd1fd4c68eb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR/18160 */

/* { dg-do compile { target i?86-*-* x86_64-*-* } } */

/* This should yield an error even without -pedantic.  */
/* { dg-options "-ansi" } */

void g(int *);

void f(void) 
{ 
  register int x __asm ("eax");
  g(&x);	/* { dg-error "error: address of register variable" } */
}