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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [falign-labels-1.c] - Diff between revs 816 and 826

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

Rev 816 Rev 826
/* { dg-do run } */
/* { dg-do run } */
/* { dg-options "-falign-labels=8" } */
/* { dg-options "-falign-labels=8" } */
 
 
/* On ARMv7-A CPUs, this test resulted in incorrect code generation.
/* On ARMv7-A CPUs, this test resulted in incorrect code generation.
   The code generated for the switch statement expected the jump table
   The code generated for the switch statement expected the jump table
   to immediately follow the jump instruction, but -falign-labels
   to immediately follow the jump instruction, but -falign-labels
   caused the label preceding the table to be aligned.  */
   caused the label preceding the table to be aligned.  */
/* M68K and fido only support -falign-labels argument <= 2.  */
/* M68K and fido only support -falign-labels argument <= 2.  */
 
 
volatile int x;
volatile int x;
 
 
int main(void)
int main(void)
{
{
  int y;
  int y;
 
 
  x = 0;
  x = 0;
 
 
  switch(x)
  switch(x)
    {
    {
    case 0:
    case 0:
      y = 2 * x;
      y = 2 * x;
      break;
      break;
    case 1:
    case 1:
      y = -3 * x;
      y = -3 * x;
      break;
      break;
    case 2:
    case 2:
      y = x + 5;
      y = x + 5;
      break;
      break;
    case 3:
    case 3:
      y = x - 7;
      y = x - 7;
      break;
      break;
    default:
    default:
      break;
      break;
    }
    }
 
 
  x = y;
  x = y;
 
 
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

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