2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / enum9.C
blob5a74b2f6fdd62c4e9405f7d1f78c22eace4a4678
1 // { dg-do run  }
2 // { dg-options "-fshort-enums" }
4 // On ARM EABI targets this testcase will cause a warning to be emitted
5 // whilst EABI attributes are being merged at link time unless
6 // the --no-enum-size-warning option is passed to the linker.  Whilst the
7 // enum-size attributes should only be emitted if there are values of
8 // enum type that can escape the compilation unit, gcc cannot currently
9 // detect this; if this facility is added then this linker option should
10 // not be needed.  arm-*-linux*eabi should be a good approximation to
11 // those platforms where the EABI supplement defines enum values to be
12 // 32 bits wide.
13 // { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm*-*-linux*eabi } }
15 // GROUPS passed enums
16   extern "C" int printf (const char *, ...);
18   enum E { A = 0x80000000, B = 0 };
20   main()
21   {
22     if (sizeof (E) != 4)
23         { printf ("FAIL\n"); return 1; }
24     else
25         printf ("PASS\n");
26     return 0;
27   }