1static int (auto); 2static int (break); 3static int (case); 4static int (char); 5static int (const); 6static int (__const); 7static int (__const__); 8static int (continue); 9static int (default); 10static int (do); 11static int (double); 12static int (else); 13static int (enum); 14static int (extern); 15static int (float); 16static int (for); 17static int (goto); 18static int (if); 19static int (inline); 20static int (__inline); 21static int (__inline__); 22static int (int); 23static int (long); 24static int (register); 25static int (restrict); 26static int (__restrict); 27static int (__restrict__); 28static int (return); 29static int (short); 30static int (signed); 31static int (sizeof); 32static int (static); 33static int (struct); 34static int (switch); 35static int (typedef); 36static int (union); 37static int (unsigned); 38static int (void); 39static int (volatile); 40static int (volatile); 41static int (__volatile); 42static int (__volatile__); 43static int (while); 44 45static int (_Alignas); 46static int (_Alignof); 47static int (_Atomic); 48static int (_Bool); 49static int (_Complex); 50static int (_Generic); 51static int (_Imaginary); 52static int (_Noreturn); 53static int (_Static_assert); 54static int (_Thread_local); 55 56// Sparse extensions 57static int (__context__); 58static int (__range__); 59static int (__sizeof_ptr__); 60 61// GCC extensions 62static int (__alignof); 63static int (__alignof__); 64static int (asm); // not reserved! 65static int (__asm); 66static int (__asm__); 67static int (__label__); 68static int (__thread); 69static int (typeof); 70static int (__typeof); 71static int (__typeof__); 72 73static int (__int128); 74static int (__int128_t); 75static int (__uint128_t); 76 77static int (__builtin_ms_va_list); 78static int (__builtin_offsetof); 79static int (__builtin_types_compatible_p); 80static int (__builtin_va_list); 81 82/* 83 * check-name: const et.al. are reserved identifiers 84 * check-error-start 85reserved.c:1:12: error: Trying to use reserved word 'auto' as identifier 86reserved.c:2:12: error: Trying to use reserved word 'break' as identifier 87reserved.c:3:12: error: Trying to use reserved word 'case' as identifier 88reserved.c:4:12: error: Trying to use reserved word 'char' as identifier 89reserved.c:5:12: error: Trying to use reserved word 'const' as identifier 90reserved.c:6:12: error: Trying to use reserved word '__const' as identifier 91reserved.c:7:12: error: Trying to use reserved word '__const__' as identifier 92reserved.c:8:12: error: Trying to use reserved word 'continue' as identifier 93reserved.c:9:12: error: Trying to use reserved word 'default' as identifier 94reserved.c:10:12: error: Trying to use reserved word 'do' as identifier 95reserved.c:11:12: error: Trying to use reserved word 'double' as identifier 96reserved.c:12:12: error: Trying to use reserved word 'else' as identifier 97reserved.c:13:12: error: Trying to use reserved word 'enum' as identifier 98reserved.c:14:12: error: Trying to use reserved word 'extern' as identifier 99reserved.c:15:12: error: Trying to use reserved word 'float' as identifier 100reserved.c:16:12: error: Trying to use reserved word 'for' as identifier 101reserved.c:17:12: error: Trying to use reserved word 'goto' as identifier 102reserved.c:18:12: error: Trying to use reserved word 'if' as identifier 103reserved.c:19:12: error: Trying to use reserved word 'inline' as identifier 104reserved.c:20:12: error: Trying to use reserved word '__inline' as identifier 105reserved.c:21:12: error: Trying to use reserved word '__inline__' as identifier 106reserved.c:22:12: error: Trying to use reserved word 'int' as identifier 107reserved.c:23:12: error: Trying to use reserved word 'long' as identifier 108reserved.c:24:12: error: Trying to use reserved word 'register' as identifier 109reserved.c:25:12: error: Trying to use reserved word 'restrict' as identifier 110reserved.c:26:12: error: Trying to use reserved word '__restrict' as identifier 111reserved.c:27:12: error: Trying to use reserved word '__restrict__' as identifier 112reserved.c:28:12: error: Trying to use reserved word 'return' as identifier 113reserved.c:29:12: error: Trying to use reserved word 'short' as identifier 114reserved.c:30:12: error: Trying to use reserved word 'signed' as identifier 115reserved.c:31:12: error: Trying to use reserved word 'sizeof' as identifier 116reserved.c:32:12: error: Trying to use reserved word 'static' as identifier 117reserved.c:33:12: error: Trying to use reserved word 'struct' as identifier 118reserved.c:34:12: error: Trying to use reserved word 'switch' as identifier 119reserved.c:35:12: error: Trying to use reserved word 'typedef' as identifier 120reserved.c:36:12: error: Trying to use reserved word 'union' as identifier 121reserved.c:37:12: error: Trying to use reserved word 'unsigned' as identifier 122reserved.c:38:12: error: Trying to use reserved word 'void' as identifier 123reserved.c:39:12: error: Trying to use reserved word 'volatile' as identifier 124reserved.c:40:12: error: Trying to use reserved word 'volatile' as identifier 125reserved.c:41:12: error: Trying to use reserved word '__volatile' as identifier 126reserved.c:42:12: error: Trying to use reserved word '__volatile__' as identifier 127reserved.c:43:12: error: Trying to use reserved word 'while' as identifier 128reserved.c:45:12: error: Trying to use reserved word '_Alignas' as identifier 129reserved.c:46:12: error: Trying to use reserved word '_Alignof' as identifier 130reserved.c:47:12: error: Trying to use reserved word '_Atomic' as identifier 131reserved.c:48:12: error: Trying to use reserved word '_Bool' as identifier 132reserved.c:49:12: error: Trying to use reserved word '_Complex' as identifier 133reserved.c:50:12: error: Trying to use reserved word '_Generic' as identifier 134reserved.c:51:12: error: Trying to use reserved word '_Imaginary' as identifier 135reserved.c:52:12: error: Trying to use reserved word '_Noreturn' as identifier 136reserved.c:53:12: error: Trying to use reserved word '_Static_assert' as identifier 137reserved.c:54:12: error: Trying to use reserved word '_Thread_local' as identifier 138reserved.c:57:12: error: Trying to use reserved word '__context__' as identifier 139reserved.c:58:12: error: Trying to use reserved word '__range__' as identifier 140reserved.c:59:12: error: Trying to use reserved word '__sizeof_ptr__' as identifier 141reserved.c:62:12: error: Trying to use reserved word '__alignof' as identifier 142reserved.c:63:12: error: Trying to use reserved word '__alignof__' as identifier 143reserved.c:65:12: error: Trying to use reserved word '__asm' as identifier 144reserved.c:66:12: error: Trying to use reserved word '__asm__' as identifier 145reserved.c:67:12: error: Trying to use reserved word '__label__' as identifier 146reserved.c:68:12: error: Trying to use reserved word '__thread' as identifier 147reserved.c:69:12: error: Trying to use reserved word 'typeof' as identifier 148reserved.c:70:12: error: Trying to use reserved word '__typeof' as identifier 149reserved.c:71:12: error: Trying to use reserved word '__typeof__' as identifier 150reserved.c:73:12: error: Trying to use reserved word '__int128' as identifier 151reserved.c:74:12: error: Trying to use reserved word '__int128_t' as identifier 152reserved.c:75:12: error: Trying to use reserved word '__uint128_t' as identifier 153reserved.c:77:12: error: Trying to use reserved word '__builtin_ms_va_list' as identifier 154reserved.c:78:12: error: Trying to use reserved word '__builtin_offsetof' as identifier 155reserved.c:79:12: error: Trying to use reserved word '__builtin_types_compatible_p' as identifier 156reserved.c:80:12: error: Trying to use reserved word '__builtin_va_list' as identifier 157 * check-error-end 158 */ 159