OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [c99-mixdecl-1.c] - Blame information for rev 724

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* Test for C99 mixed declarations and code.  */
2
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3
/* { dg-do run } */
4
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5
 
6
extern void abort (void);
7
extern void exit (int);
8
 
9
int
10
main (void)
11
{
12
  int i = 0;
13
  if (i != 0)
14
    abort ();
15
  i++;
16
  if (i != 1)
17
    abort ();
18
  int j = i;
19
  if (j != 1)
20
    abort ();
21
  struct foo { int i0; } k = { 4 };
22
  if (k.i0 != 4)
23
    abort ();
24
  exit (0);
25
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.