Changeset 7f6a7c9 for src/Parser/lex.ll
- Timestamp:
- Sep 21, 2022, 11:02:15 AM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 95dab9e
- Parents:
- 428adbc (diff), 0bd46fd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Parser/lex.ll (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/lex.ll
r428adbc r7f6a7c9 10 10 * Created On : Sat Sep 22 08:58:10 2001 11 11 * Last Modified By : Peter A. Buhr 12 * Last Modified On : Sun Jun 20 18:41:09 202113 * Update Count : 7 5912 * Last Modified On : Tue Sep 20 21:18:55 2022 13 * Update Count : 762 14 14 */ 15 15 … … 24 24 25 25 //**************************** Includes and Defines **************************** 26 27 #ifdef __clang__ 28 #pragma GCC diagnostic ignored "-Wnull-conversion" 29 #endif 26 30 27 31 // trigger before each matching rule's action … … 82 86 // Stop warning due to incorrectly generated flex code. 83 87 #pragma GCC diagnostic ignored "-Wsign-compare" 84 85 // lex uses __null in a boolean context, it's fine.86 #pragma GCC diagnostic ignored "-Wnull-conversion"87 88 %} 88 89 … … 314 315 switch { KEYWORD_RETURN(SWITCH); } 315 316 thread { KEYWORD_RETURN(THREAD); } // C11 316 _Thread_local { KEYWORD_RETURN(THREADLOCAL); } // C11 317 __thread { KEYWORD_RETURN(THREADLOCALGCC); } // GCC 318 _Thread_local { KEYWORD_RETURN(THREADLOCALC11); } // C11 317 319 throw { KEYWORD_RETURN(THROW); } // CFA 318 320 throwResume { KEYWORD_RETURN(THROWRESUME); } // CFA
Note:
See TracChangeset
for help on using the changeset viewer.