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