view gcc/testsuite/gcc.dg/20011214-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-do run } */

extern void abort (void);
extern void exit (int);

#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;
}