Changeset 8053d2c
- Timestamp:
- Oct 29, 2017, 10:43:44 AM (7 years ago)
- 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:
- bd7f401
- Parents:
- af0c8da
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/prelude/prelude.cf
raf0c8da r8053d2c 7 7 // Created On : Sat Nov 29 07:23:41 2014 8 8 // Last Modified By : Peter A. Buhr 9 // Last Modified On : S un Oct 8 12:21:33201710 // Update Count : 979 // Last Modified On : Sat Oct 28 16:33:09 2017 10 // Update Count : 102 11 11 // 12 12 … … 41 41 _Bool ?++( _Bool & ), ?++( volatile _Bool & ); 42 42 _Bool ?--( _Bool & ), ?--( volatile _Bool & ); 43 unsigned char ?++( unsigned char & ), ?++( volatile unsigned char & );44 43 signed short ?++( signed short & ), ?++( volatile signed short & ); 45 44 signed short ?--( signed short & ), ?--( volatile signed short & ); … … 196 195 long double _Complex ?+?( long double _Complex, long double _Complex ), ?-?( long double _Complex, long double _Complex ); 197 196 198 forall( dtype T | sized(T) ) T * 199 forall( dtype T | sized(T) ) T * 197 forall( dtype T | sized(T) ) T * ?+?( T *, ptrdiff_t ); 198 forall( dtype T | sized(T) ) T * ?+?( ptrdiff_t, T * ); 200 199 forall( dtype T | sized(T) ) const T * ?+?( const T *, ptrdiff_t ); 201 200 forall( dtype T | sized(T) ) const T * ?+?( ptrdiff_t, const T * ); 202 forall( dtype T | sized(T) ) volatile T * 203 forall( dtype T | sized(T) ) volatile T * 201 forall( dtype T | sized(T) ) volatile T * ?+?( volatile T *, ptrdiff_t ); 202 forall( dtype T | sized(T) ) volatile T * ?+?( ptrdiff_t, volatile T * ); 204 203 forall( dtype T | sized(T) ) const volatile T * ?+?( const volatile T *, ptrdiff_t ); 205 204 forall( dtype T | sized(T) ) const volatile T * ?+?( ptrdiff_t, const volatile T * ); 206 forall( dtype T | sized(T) ) T * 205 forall( dtype T | sized(T) ) T * ?-?( T *, ptrdiff_t ); 207 206 forall( dtype T | sized(T) ) const T * ?-?( const T *, ptrdiff_t ); 208 forall( dtype T | sized(T) ) volatile T * 207 forall( dtype T | sized(T) ) volatile T * ?-?( volatile T *, ptrdiff_t ); 209 208 forall( dtype T | sized(T) ) const volatile T * ?-?( const volatile T *, ptrdiff_t ); 210 209 forall( dtype T | sized(T) ) ptrdiff_t ?-?( const volatile T *, const volatile T * ); … … 232 231 signed int ?<?( _Bool, _Bool ), ?<=?( _Bool, _Bool ), 233 232 ?>?( _Bool, _Bool ), ?>=?( _Bool, _Bool ); 234 signed int ?<?( char, char ), ?<=?( char, char ),235 ?>?( char, char ), ?>=?( char, char );233 signed int ?<?( char, char ), ?<=?( char, char ), 234 ?>?( char, char ), ?>=?( char, char ); 236 235 signed int ?<?( signed char, signed char ), ?<=?( signed char, signed char ), 237 236 ?>?( signed char, signed char ), ?>=?( signed char, signed char ); … … 241 240 ?>?( signed short, signed short ), ?>=?( signed short, signed short ); 242 241 signed int ?<?( unsigned short, unsigned short ), ?<=?( unsigned short, unsigned short ), 243 ?>?( unsigned short, unsigned short ), 242 ?>?( unsigned short, unsigned short ), ?>=?( unsigned short, unsigned short ); 244 243 signed int ?<?( signed int, signed int ), ?<=?( signed int, signed int ), 245 244 ?>?( signed int, signed int ), ?>=?( signed int, signed int ); … … 474 473 forall( ftype FT ) FT * ?=?( FT * volatile &, zero_t ); 475 474 476 forall( dtype T | sized(T) ) T * 477 forall( dtype T | sized(T) ) T * 475 forall( dtype T | sized(T) ) T * ?+=?( T * &, ptrdiff_t ); 476 forall( dtype T | sized(T) ) T * ?+=?( T * volatile &, ptrdiff_t ); 478 477 forall( dtype T | sized(T) ) const T * ?+=?( const T * &, ptrdiff_t ); 479 478 forall( dtype T | sized(T) ) const T * ?+=?( const T * volatile &, ptrdiff_t ); 480 forall( dtype T | sized(T) ) volatile T * 481 forall( dtype T | sized(T) ) volatile T * 479 forall( dtype T | sized(T) ) volatile T * ?+=?( volatile T * &, ptrdiff_t ); 480 forall( dtype T | sized(T) ) volatile T * ?+=?( volatile T * volatile &, ptrdiff_t ); 482 481 forall( dtype T | sized(T) ) const volatile T * ?+=?( const volatile T * &, ptrdiff_t ); 483 482 forall( dtype T | sized(T) ) const volatile T * ?+=?( const volatile T * volatile &, ptrdiff_t ); 484 forall( dtype T | sized(T) ) T * 485 forall( dtype T | sized(T) ) T * 483 forall( dtype T | sized(T) ) T * ?-=?( T * &, ptrdiff_t ); 484 forall( dtype T | sized(T) ) T * ?-=?( T * volatile &, ptrdiff_t ); 486 485 forall( dtype T | sized(T) ) const T * ?-=?( const T * &, ptrdiff_t ); 487 486 forall( dtype T | sized(T) ) const T * ?-=?( const T * volatile &, ptrdiff_t ); 488 forall( dtype T | sized(T) ) volatile T * 489 forall( dtype T | sized(T) ) volatile T * 487 forall( dtype T | sized(T) ) volatile T * ?-=?( volatile T * &, ptrdiff_t ); 488 forall( dtype T | sized(T) ) volatile T * ?-=?( volatile T * volatile &, ptrdiff_t ); 490 489 forall( dtype T | sized(T) ) const volatile T * ?-=?( const volatile T * &, ptrdiff_t ); 491 490 forall( dtype T | sized(T) ) const volatile T * ?-=?( const volatile T * volatile &, ptrdiff_t ); … … 503 502 signed long long int ?=?( signed long long int &, signed long long int ), ?=?( volatile signed long long int &, signed long long int ); 504 503 unsigned long long int ?=?( unsigned long long int &, unsigned long long int ), ?=?( volatile unsigned long long int &, unsigned long long int ); 505 zero_t ?=?( zero_t &, zero_t );504 zero_t ?=?( zero_t &, zero_t ); 506 505 one_t ?=?( one_t &, one_t ); 507 506 … … 674 673 ?+=?( long double _Complex &, long double _Complex ), ?+=?( volatile long double _Complex &, long double _Complex ), 675 674 ?-=?( long double _Complex &, long double _Complex ), ?-=?( volatile long double _Complex &, long double _Complex ); 676 677 678 679 675 680 676 … … 846 842 forall( dtype DT ) void ^?{}( const volatile DT * &); 847 843 848 void 849 void 850 void 851 void ^?{}( constvolatile void * &);844 void ^?{}( void * &); 845 void ^?{}( const void * &); 846 void ^?{}( volatile void * &); 847 void ^?{}( const volatile void * &); 852 848 853 849 // Local Variables: //
Note: See TracChangeset
for help on using the changeset viewer.