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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [ext/] [attrib3.C] - Diff between revs 149 and 154

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

Rev 149 Rev 154
// Test that attributes work in a variety of situations.
// Test that attributes work in a variety of situations.
// { dg-options -O }
// { dg-options -O }
// { dg-do run }
// { dg-do run }
#define attrib __attribute ((mode (QI)))
#define attrib __attribute ((mode (QI)))
attrib signed int a;            // attributes before type are broken
attrib signed int a;            // attributes before type are broken
static attrib unsigned int b;
static attrib unsigned int b;
int foo(attrib int o)           // attribute arguments are broken
int foo(attrib int o)           // attribute arguments are broken
{
{
  return (sizeof (a) != 1
  return (sizeof (a) != 1
          || sizeof (b) != 1
          || sizeof (b) != 1
          || sizeof (o) != 1
          || sizeof (o) != 1
          || sizeof ((attrib signed int) b) != 1);
          || sizeof ((attrib signed int) b) != 1);
}
}
int main ()
int main ()
{
{
  return foo (42);
  return foo (42);
}
}
 
 

powered by: WebSVN 2.1.0

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