Changeset 67a1c67 for src/Parser/lex.ll
- Timestamp:
- Aug 31, 2022, 2:03:03 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 9d67a6d
- Parents:
- 38a238d (diff), 594e1db (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
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/lex.ll
r38a238d r67a1c67 314 314 switch { KEYWORD_RETURN(SWITCH); } 315 315 thread { KEYWORD_RETURN(THREAD); } // C11 316 __thread { KEYWORD_RETURN(THREADLOCAL ); } // GCC317 _Thread_local { KEYWORD_RETURN(THREADLOCAL ); } // C11316 __thread { KEYWORD_RETURN(THREADLOCALGCC); } // GCC 317 _Thread_local { KEYWORD_RETURN(THREADLOCALC11); } // C11 318 318 throw { KEYWORD_RETURN(THROW); } // CFA 319 319 throwResume { KEYWORD_RETURN(THROWRESUME); } // CFA
Note: See TracChangeset
for help on using the changeset viewer.