Changeset 1ae06fa for src/prelude


Ignore:
Timestamp:
Aug 22, 2017, 5:18:19 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
9f10c4b8
Parents:
f6582243
Message:

Update builtins.c for references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/prelude/builtins.c

    rf6582243 r1ae06fa  
    8686} // ?\?
    8787
    88 static inline long int ?\=?( long int * x, unsigned long int y ) { *x = *x \ y; return *x; }
    89 static inline unsigned long int ?\=?( unsigned long int * x, unsigned long int y ) { *x = *x \ y; return *x; }
    90 static inline int ?\=?( int * x, unsigned long int y ) { *x = *x \ y; return *x; }
    91 static inline unsigned int ?\=?( unsigned int * x, unsigned long int y ) { *x = *x \ y; return *x; }
     88static inline long int ?\=?( long int & x, unsigned long int y ) { x = x \ y; return x; }
     89static inline unsigned long int ?\=?( unsigned long int & x, unsigned long int y ) { x = x \ y; return x; }
     90static inline int ?\=?( int & x, unsigned long int y ) { x = x \ y; return x; }
     91static inline unsigned int ?\=?( unsigned int & x, unsigned long int y ) { x = x \ y; return x; }
    9292
    9393// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.