Changeset 36ebd03 for src/Parser/lex.ll


Ignore:
Timestamp:
Mar 3, 2016, 1:28:56 PM (8 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
3627356
Parents:
9d7b3ea (diff), 4040425 (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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/lex.ll

    r9d7b3ea r36ebd03  
    1010 * Created On       : Sat Sep 22 08:58:10 2001
    1111 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Tue Feb  2 15:06:54 2016
    13  * Update Count     : 426
     12 * Last Modified On : Wed Mar  2 18:07:20 2016
     13 * Update Count     : 434
    1414 */
    1515
     
    137137%%
    138138                                   /* line directives */
    139 ^{h_white}*"#"{h_white}*[0-9]+{h_white}*["][^"\n]+["][^\n]*"\n" {
     139^{h_white}*"#"{h_white}*[0-9]+{h_white}*["][^"\n]+["].*"\n" {
    140140        /* " stop highlighting */
    141141        char *end_num;
     
    201201__const                 { KEYWORD_RETURN(CONST); }                              // GCC
    202202__const__               { KEYWORD_RETURN(CONST); }                              // GCC
    203 context                 { KEYWORD_RETURN(CONTEXT); }                    // CFA
    204203continue                { KEYWORD_RETURN(CONTINUE); }
    205204default                 { KEYWORD_RETURN(DEFAULT); }
     
    237236_Noreturn               { KEYWORD_RETURN(NORETURN); }                   // C11
    238237__builtin_offsetof { KEYWORD_RETURN(OFFSETOF); }                // GCC
     238otype                   { KEYWORD_RETURN(OTYPE); }                              // CFA
    239239register                { KEYWORD_RETURN(REGISTER); }
    240240restrict                { KEYWORD_RETURN(RESTRICT); }                   // C99
     
    254254throw                   { KEYWORD_RETURN(THROW); }                              // CFA
    255255throwResume             { KEYWORD_RETURN(THROWRESUME); }                // CFA
     256trait                   { KEYWORD_RETURN(TRAIT); }                              // CFA
    256257try                             { KEYWORD_RETURN(TRY); }                                // CFA
    257 type                    { KEYWORD_RETURN(TYPE); }                               // CFA
    258258typedef                 { KEYWORD_RETURN(TYPEDEF); }
    259259typeof                  { KEYWORD_RETURN(TYPEOF); }                             // GCC
     
    262262union                   { KEYWORD_RETURN(UNION); }
    263263unsigned                { KEYWORD_RETURN(UNSIGNED); }
     264__builtin_va_list { KEYWORD_RETURN(VALIST); }                   // GCC
    264265void                    { KEYWORD_RETURN(VOID); }
    265266volatile                { KEYWORD_RETURN(VOLATILE); }
Note: See TracChangeset for help on using the changeset viewer.