Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/lex.ll

    rc468150 r79a6b17  
    1010 * Created On       : Sat Sep 22 08:58:10 2001
    1111 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Sat Mar 25 08:09:03 2023
    13  * Update Count     : 768
     12 * Last Modified On : Mon Jan 30 19:03:34 2023
     13 * Update Count     : 767
    1414 */
    1515
     
    2323// line-number directives) and C/C++ style comments, which are ignored.
    2424
    25 // *************************** Includes and Defines ****************************
     25//**************************** Includes and Defines ****************************
    2626
    2727#ifdef __clang__
     
    4444
    4545#include "config.h"                                                                             // configure info
    46 #include "DeclarationNode.h"                            // for DeclarationNode
    47 #include "ExpressionNode.h"                             // for LabelNode
    48 #include "InitializerNode.h"                            // for InitializerNode
    4946#include "ParseNode.h"
    50 #include "ParserTypes.h"                                // for Token
    51 #include "StatementNode.h"                              // for CondCtl, ForCtrl
    5247#include "TypedefTable.h"
    53 // This (generated) header must come late as it is missing includes.
    54 #include "parser.hh"                                    // generated info
    5548
    5649string * build_postfix_name( string * name );
     
    221214__alignof               { KEYWORD_RETURN(ALIGNOF); }                    // GCC
    222215__alignof__             { KEYWORD_RETURN(ALIGNOF); }                    // GCC
    223 and                             { QKEYWORD_RETURN(WAND); }                              // CFA
    224216asm                             { KEYWORD_RETURN(ASM); }
    225217__asm                   { KEYWORD_RETURN(ASM); }                                // GCC
Note: See TracChangeset for help on using the changeset viewer.