OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.law/] [enum9.C] - Diff between revs 305 and 384

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

Rev 305 Rev 384
// { dg-do run  }
// { dg-do run  }
// { dg-options "-fshort-enums" }
// { dg-options "-fshort-enums" }
// On ARM EABI targets this testcase will cause a warning to be emitted
// On ARM EABI targets this testcase will cause a warning to be emitted
// whilst EABI attributes are being merged at link time unless
// whilst EABI attributes are being merged at link time unless
// the --no-enum-size-warning option is passed to the linker.  Whilst the
// the --no-enum-size-warning option is passed to the linker.  Whilst the
// enum-size attributes should only be emitted if there are values of
// enum-size attributes should only be emitted if there are values of
// enum type that can escape the compilation unit, gcc cannot currently
// enum type that can escape the compilation unit, gcc cannot currently
// detect this; if this facility is added then this linker option should
// detect this; if this facility is added then this linker option should
// not be needed.  arm-*-linux*eabi should be a good approximation to
// not be needed.  arm-*-linux*eabi should be a good approximation to
// those platforms where the EABI supplement defines enum values to be
// those platforms where the EABI supplement defines enum values to be
// 32 bits wide.
// 32 bits wide.
// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } }
// { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } }
// GROUPS passed enums
// GROUPS passed enums
  extern "C" int printf (const char *, ...);
  extern "C" int printf (const char *, ...);
  enum E { A = 0x80000000, B = 0 };
  enum E { A = 0x80000000, B = 0 };
  main()
  main()
  {
  {
    if (sizeof (E) != 4)
    if (sizeof (E) != 4)
        { printf ("FAIL\n"); return 1; }
        { printf ("FAIL\n"); return 1; }
    else
    else
        printf ("PASS\n");
        printf ("PASS\n");
    return 0;
    return 0;
  }
  }
 
 

powered by: WebSVN 2.1.0

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