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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [990424-1.c] - Rev 318

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

/* Test that stack alignment is preserved with pending_stack_adjust
   with stdcall functions.  */
 
/* { dg-do run } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options -mpreferred-stack-boundary=4 } */
 
void __attribute__((stdcall)) foo(int a, int b, int c);
 
extern void abort (void);
extern void exit (int);
 
int
main ()
{
  foo(1, 2, 3);
  foo(1, 2, 3);
  exit (0);
}
 
void __attribute__((stdcall))
foo(int a, int b, int c)
{
  static int last_align = -1;
  int dummy, align = (int)&dummy & 15;
  if (last_align < 0)
    last_align = align;
  else if (align != last_align)
    abort ();
}
 

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

powered by: WebSVN 2.1.0

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