Ignore:
Timestamp:
Oct 28, 2015, 3:47:29 PM (10 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:
37a3b8f9, 4673385, e56cfdb0
Parents:
698664b3 (diff), 097e2b0 (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 changes into current branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.h

    r698664b3 rd2ded3e7  
    8787     RETURN = 305,
    8888     CHOOSE = 306,
    89      FALLTHRU = 307,
    90      TRY = 308,
    91      CATCH = 309,
    92      FINALLY = 310,
    93      THROW = 311,
    94      ASM = 312,
    95      ALIGNAS = 313,
    96      ALIGNOF = 314,
    97      ATOMIC = 315,
    98      GENERIC = 316,
    99      NORETURN = 317,
    100      STATICASSERT = 318,
    101      THREADLOCAL = 319,
    102      IDENTIFIER = 320,
    103      QUOTED_IDENTIFIER = 321,
    104      TYPEDEFname = 322,
    105      TYPEGENname = 323,
    106      ATTR_IDENTIFIER = 324,
    107      ATTR_TYPEDEFname = 325,
    108      ATTR_TYPEGENname = 326,
    109      INTEGERconstant = 327,
    110      FLOATINGconstant = 328,
    111      CHARACTERconstant = 329,
    112      STRINGliteral = 330,
    113      ZERO = 331,
    114      ONE = 332,
    115      ARROW = 333,
    116      ICR = 334,
    117      DECR = 335,
    118      LS = 336,
    119      RS = 337,
    120      LE = 338,
    121      GE = 339,
    122      EQ = 340,
    123      NE = 341,
    124      ANDAND = 342,
    125      OROR = 343,
    126      ELLIPSIS = 344,
    127      MULTassign = 345,
    128      DIVassign = 346,
    129      MODassign = 347,
    130      PLUSassign = 348,
    131      MINUSassign = 349,
    132      LSassign = 350,
    133      RSassign = 351,
    134      ANDassign = 352,
    135      ERassign = 353,
    136      ORassign = 354,
    137      THEN = 355
     89     DISABLE = 307,
     90     ENABLE = 308,
     91     FALLTHRU = 309,
     92     TRY = 310,
     93     CATCH = 311,
     94     CATCHRESUME = 312,
     95     FINALLY = 313,
     96     THROW = 314,
     97     THROWRESUME = 315,
     98     AT = 316,
     99     ASM = 317,
     100     ALIGNAS = 318,
     101     ALIGNOF = 319,
     102     ATOMIC = 320,
     103     GENERIC = 321,
     104     NORETURN = 322,
     105     STATICASSERT = 323,
     106     THREADLOCAL = 324,
     107     IDENTIFIER = 325,
     108     QUOTED_IDENTIFIER = 326,
     109     TYPEDEFname = 327,
     110     TYPEGENname = 328,
     111     ATTR_IDENTIFIER = 329,
     112     ATTR_TYPEDEFname = 330,
     113     ATTR_TYPEGENname = 331,
     114     INTEGERconstant = 332,
     115     FLOATINGconstant = 333,
     116     CHARACTERconstant = 334,
     117     STRINGliteral = 335,
     118     ZERO = 336,
     119     ONE = 337,
     120     ARROW = 338,
     121     ICR = 339,
     122     DECR = 340,
     123     LS = 341,
     124     RS = 342,
     125     LE = 343,
     126     GE = 344,
     127     EQ = 345,
     128     NE = 346,
     129     ANDAND = 347,
     130     OROR = 348,
     131     ELLIPSIS = 349,
     132     MULTassign = 350,
     133     DIVassign = 351,
     134     MODassign = 352,
     135     PLUSassign = 353,
     136     MINUSassign = 354,
     137     LSassign = 355,
     138     RSassign = 356,
     139     ANDassign = 357,
     140     ERassign = 358,
     141     ORassign = 359,
     142     ATassign = 360,
     143     THEN = 361
    138144   };
    139145#endif
     
    188194#define RETURN 305
    189195#define CHOOSE 306
    190 #define FALLTHRU 307
    191 #define TRY 308
    192 #define CATCH 309
    193 #define FINALLY 310
    194 #define THROW 311
    195 #define ASM 312
    196 #define ALIGNAS 313
    197 #define ALIGNOF 314
    198 #define ATOMIC 315
    199 #define GENERIC 316
    200 #define NORETURN 317
    201 #define STATICASSERT 318
    202 #define THREADLOCAL 319
    203 #define IDENTIFIER 320
    204 #define QUOTED_IDENTIFIER 321
    205 #define TYPEDEFname 322
    206 #define TYPEGENname 323
    207 #define ATTR_IDENTIFIER 324
    208 #define ATTR_TYPEDEFname 325
    209 #define ATTR_TYPEGENname 326
    210 #define INTEGERconstant 327
    211 #define FLOATINGconstant 328
    212 #define CHARACTERconstant 329
    213 #define STRINGliteral 330
    214 #define ZERO 331
    215 #define ONE 332
    216 #define ARROW 333
    217 #define ICR 334
    218 #define DECR 335
    219 #define LS 336
    220 #define RS 337
    221 #define LE 338
    222 #define GE 339
    223 #define EQ 340
    224 #define NE 341
    225 #define ANDAND 342
    226 #define OROR 343
    227 #define ELLIPSIS 344
    228 #define MULTassign 345
    229 #define DIVassign 346
    230 #define MODassign 347
    231 #define PLUSassign 348
    232 #define MINUSassign 349
    233 #define LSassign 350
    234 #define RSassign 351
    235 #define ANDassign 352
    236 #define ERassign 353
    237 #define ORassign 354
    238 #define THEN 355
     196#define DISABLE 307
     197#define ENABLE 308
     198#define FALLTHRU 309
     199#define TRY 310
     200#define CATCH 311
     201#define CATCHRESUME 312
     202#define FINALLY 313
     203#define THROW 314
     204#define THROWRESUME 315
     205#define AT 316
     206#define ASM 317
     207#define ALIGNAS 318
     208#define ALIGNOF 319
     209#define ATOMIC 320
     210#define GENERIC 321
     211#define NORETURN 322
     212#define STATICASSERT 323
     213#define THREADLOCAL 324
     214#define IDENTIFIER 325
     215#define QUOTED_IDENTIFIER 326
     216#define TYPEDEFname 327
     217#define TYPEGENname 328
     218#define ATTR_IDENTIFIER 329
     219#define ATTR_TYPEDEFname 330
     220#define ATTR_TYPEGENname 331
     221#define INTEGERconstant 332
     222#define FLOATINGconstant 333
     223#define CHARACTERconstant 334
     224#define STRINGliteral 335
     225#define ZERO 336
     226#define ONE 337
     227#define ARROW 338
     228#define ICR 339
     229#define DECR 340
     230#define LS 341
     231#define RS 342
     232#define LE 343
     233#define GE 344
     234#define EQ 345
     235#define NE 346
     236#define ANDAND 347
     237#define OROR 348
     238#define ELLIPSIS 349
     239#define MULTassign 350
     240#define DIVassign 351
     241#define MODassign 352
     242#define PLUSassign 353
     243#define MINUSassign 354
     244#define LSassign 355
     245#define RSassign 356
     246#define ANDassign 357
     247#define ERassign 358
     248#define ORassign 359
     249#define ATassign 360
     250#define THEN 361
    239251
    240252
     
    246258
    247259/* Line 2068 of yacc.c  */
    248 #line 108 "parser.yy"
     260#line 110 "parser.yy"
    249261
    250262        Token tok;
     
    263275
    264276/* Line 2068 of yacc.c  */
    265 #line 266 "Parser/parser.h"
     277#line 278 "Parser/parser.h"
    266278} YYSTYPE;
    267279# define YYSTYPE_IS_TRIVIAL 1
Note: See TracChangeset for help on using the changeset viewer.