Changes in src/Parser/lex.ll [c468150:79a6b17]
- File:
-
- 1 edited
-
src/Parser/lex.ll (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/lex.ll
rc468150 r79a6b17 10 10 * Created On : Sat Sep 22 08:58:10 2001 11 11 * Last Modified By : Peter A. Buhr 12 * Last Modified On : Sat Mar 25 08:09:03202313 * Update Count : 76 812 * Last Modified On : Mon Jan 30 19:03:34 2023 13 * Update Count : 767 14 14 */ 15 15 … … 23 23 // line-number directives) and C/C++ style comments, which are ignored. 24 24 25 // *************************** Includes and Defines ****************************25 //**************************** Includes and Defines **************************** 26 26 27 27 #ifdef __clang__ … … 44 44 45 45 #include "config.h" // configure info 46 #include "DeclarationNode.h" // for DeclarationNode47 #include "ExpressionNode.h" // for LabelNode48 #include "InitializerNode.h" // for InitializerNode49 46 #include "ParseNode.h" 50 #include "ParserTypes.h" // for Token51 #include "StatementNode.h" // for CondCtl, ForCtrl52 47 #include "TypedefTable.h" 53 // This (generated) header must come late as it is missing includes.54 #include "parser.hh" // generated info55 48 56 49 string * build_postfix_name( string * name ); … … 221 214 __alignof { KEYWORD_RETURN(ALIGNOF); } // GCC 222 215 __alignof__ { KEYWORD_RETURN(ALIGNOF); } // GCC 223 and { QKEYWORD_RETURN(WAND); } // CFA224 216 asm { KEYWORD_RETURN(ASM); } 225 217 __asm { KEYWORD_RETURN(ASM); } // GCC
Note:
See TracChangeset
for help on using the changeset viewer.