aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/funcdef-attr-1.c
blob: 17249a0cb9e91b8696ef6abf29e9f273898c3abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* The declarator in a function definition should be able to take the
   form of an attributed function declarator, not just a plain
   function declarator.  This was formerly allowed by some of the code
   but then the wrong constraint checks were made because other code
   didn't recognise the declarator as being that of the function
   definition.  */
/* Origin: Joseph Myers <jsm@polyomino.org.uk>.  */

int (__attribute__((const)) x) (a, b)
     int a;
     int b;
{
  return a + b;
}