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.c-torture/] [compile/] [pr37617.c] - Diff between revs 297 and 338

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

Rev 297 Rev 338
typedef union
typedef union
{
{
  char *string;
  char *string;
  double dval;
  double dval;
  float fval;
  float fval;
} yystype;
} yystype;
char *f(void)
char *f(void)
{
{
  yystype tok;
  yystype tok;
  tok.dval = 0;
  tok.dval = 0;
  return (tok.string);
  return (tok.string);
}
}
char *f1(void)
char *f1(void)
{
{
  yystype tok;
  yystype tok;
  tok.fval = 0;
  tok.fval = 0;
  return (tok.string);
  return (tok.string);
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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