Home | History | Annotate | Line # | Download | only in lint1
msg_349.c revision 1.1
      1  1.1  rillig /*	$NetBSD: msg_349.c,v 1.1 2022/05/12 20:49:21 rillig Exp $	*/
      2  1.1  rillig # 3 "msg_349.c"
      3  1.1  rillig 
      4  1.1  rillig // Test for message 349: non type argument to alignof is a GCC extension [348]
      5  1.1  rillig 
      6  1.1  rillig /* lint1-flags: -S -w */
      7  1.1  rillig 
      8  1.1  rillig unsigned long c11_type = _Alignof(int);
      9  1.1  rillig 
     10  1.1  rillig /* expect+1: warning: non type argument to alignof is a GCC extension [349] */
     11  1.1  rillig unsigned long c11_expr = _Alignof(3);
     12  1.1  rillig 
     13  1.1  rillig unsigned long gcc_type = __alignof__(int);
     14  1.1  rillig 
     15  1.1  rillig /* expect+1: warning: non type argument to alignof is a GCC extension [349] */
     16  1.1  rillig unsigned long gcc_expr = __alignof__(3);
     17