aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20011214-1.c
blob: 9dea9048c5ad68dfe71c91c8e9d820f267f3876a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do run } */

#define small   __attribute__((mode(QI))) int
int main()
{
  int x, y = 0x400;

  x = (small) y;                                /* { dg-bogus "ignored" } */
  if (sizeof (small) != sizeof (char))          /* { dg-bogus "ignored" } */
    abort ();
  if (sizeof (x) != sizeof (char) && x == y)
    abort ();
  return 0;
}