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/] [stackalign/] [longlong-2.c] - Diff between revs 318 and 338

Only display areas with differences | Details | Blame | View Log

Rev 318 Rev 338
/* { dg-do compile  { target { ! *-*-darwin* } } } */
/* { dg-do compile  { target { ! *-*-darwin* } } } */
/* { dg-require-effective-target ilp32 } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -mpreferred-stack-boundary=2" } */
/* { dg-options "-O2 -mpreferred-stack-boundary=2" } */
/* { dg-final { scan-assembler-times "and\[lq\]?\[^\\n\]*-8,\[^\\n\]*sp" 2 } } */
/* { dg-final { scan-assembler-times "and\[lq\]?\[^\\n\]*-8,\[^\\n\]*sp" 2 } } */
/* { dg-final { scan-assembler-times "and\[lq\]?\[^\\n\]*-16,\[^\\n\]*sp" 2 } } */
/* { dg-final { scan-assembler-times "and\[lq\]?\[^\\n\]*-16,\[^\\n\]*sp" 2 } } */
 
 
void fn (void *);
void fn (void *);
 
 
void f2 (void)
void f2 (void)
{
{
  unsigned long long a __attribute__((aligned (8)));
  unsigned long long a __attribute__((aligned (8)));
  fn (&a);
  fn (&a);
}
}
 
 
void f3 (void)
void f3 (void)
{
{
  typedef unsigned long long L __attribute__((aligned (8)));
  typedef unsigned long long L __attribute__((aligned (8)));
  L a;
  L a;
  fn (&a);
  fn (&a);
}
}
 
 
void f4 (void)
void f4 (void)
{
{
  unsigned long long a __attribute__((aligned (16)));
  unsigned long long a __attribute__((aligned (16)));
  fn (&a);
  fn (&a);
}
}
 
 
void f5 (void)
void f5 (void)
{
{
  typedef unsigned long long L __attribute__((aligned (16)));
  typedef unsigned long long L __attribute__((aligned (16)));
  L a;
  L a;
  fn (&a);
  fn (&a);
}
}
 
 

powered by: WebSVN 2.1.0

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