Changes between Version 21 and Version 22 of C to tass-AST xml


Ignore:
Timestamp:
04/16/11 21:29:28 (15 years ago)
Author:
Stephen Siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • C to tass-AST xml

    v21 v22  
    2828 * type definitions (typedef...)
    2929 * statements (may have label)
    30    * assign
     30   * assign (translate x+=a, x*=a, ...)
    3131   * assert
    3232   * assume
     
    5454      * literals (including named literals): integers, reals, strings, chars
    5555      * variable
    56       * operators: +,-,*,/,%,<,<=,>,>=,==,!=,!,&&, | |, (x?y:z)
    57       * special kinds of assignments: x++, x--, ++x, --x, x+=a, x*=a, ...
     56      * operators: +,-,*,/,%,<,<=,>,>=,==,!=,!,&&, | |, (x?y:z), bitand, bitor, bitxor, lshift, rshift
     57      * assignments: x++, x--, ++x, --x
    5858      * bit-wise operators?
    5959      * &,* (pointer operations)