Changeset 0895cba for src


Ignore:
Timestamp:
Sep 20, 2017, 4:49:05 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
6ae8c92
Parents:
b18830e
Message:

added missing short operators in the prelude

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/prelude/prelude.cf

    rb18830e r0895cba  
    4242_Bool                   ?--( _Bool & ),                         ?--( volatile _Bool & );
    4343unsigned char           ?++( unsigned char & ),                 ?++( volatile unsigned char & );
     44signed short            ?++( signed short & ),                  ?++( volatile signed short & );
     45signed short            ?--( signed short & ),                  ?--( volatile signed short & );
     46unsigned short          ?++( unsigned short & ),                ?++( volatile unsigned short & );
     47unsigned short          ?--( unsigned short & ),                ?--( volatile unsigned short & );
    4448signed int              ?++( signed int & ),                    ?++( volatile signed int & );
    4549signed int              ?--( signed int & ),                    ?--( volatile signed int & );
     
    9296
    9397_Bool                   ++?( _Bool & ),                         --?( _Bool & );
     98signed short    ++?( signed short & ),                  --?( signed short & );
    9499signed int              ++?( signed int & ),                    --?( signed int & );
    95 unsigned int            ++?( unsigned int & ),                  --?( unsigned int & );
     100unsigned short          ++?( unsigned int & ),                  --?( unsigned int & );
     101unsigned int            ++?( unsigned short & ),                --?( unsigned short & );
    96102signed long int         ++?( signed long int & ),               --?( signed long int & );
    97103unsigned long int       ++?( unsigned long int & ),             --?( unsigned long int & );
Note: See TracChangeset for help on using the changeset viewer.