Print this page
12013 fix GCC4 as primary compiler

Split Close
Expand all
Collapse all
          --- old/usr/src/tools/smatch/src/ident-list.h
          +++ new/usr/src/tools/smatch/src/ident-list.h
↓ open down ↓ 23 lines elided ↑ open up ↑
  24   24  IDENT(__attribute); IDENT(__attribute__);
  25   25  IDENT(volatile); IDENT(__volatile); IDENT(__volatile__);
  26   26  IDENT(double);
  27   27  
  28   28  /* C storage classes. They get marked as reserved when initialized */
  29   29  IDENT(static);
  30   30  
  31   31  /* C99 keywords */
  32   32  IDENT(restrict); IDENT(__restrict); IDENT(__restrict__);
  33   33  IDENT(_Bool);
  34      -IDENT(_Complex);
       34 +IDENT_RESERVED(_Complex);
  35   35  IDENT_RESERVED(_Imaginary);
  36   36  
  37   37  /* C11 keywords */
  38   38  IDENT(_Alignas);
  39   39  IDENT_RESERVED(_Alignof);
  40   40  IDENT(_Atomic);
  41   41  IDENT_RESERVED(_Generic);
  42   42  IDENT(_Noreturn);
  43   43  IDENT_RESERVED(_Static_assert);
  44   44  IDENT(_Thread_local);
↓ open down ↓ 38 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX