Changeset 14f6bb39 for src/prelude
- Timestamp:
- Feb 28, 2017, 3:20:59 PM (8 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:
- 1e6b350, f37147b
- Parents:
- fd061ed3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/prelude/prelude.cf
rfd061ed3 r14f6bb39 131 131 !?( float _Complex ), !?( double _Complex ), !?( long double _Complex ); 132 132 133 forall ( dtype DT ) int !?( DT * ); 134 forall ( dtype DT ) int !?( const DT * ); 135 forall ( dtype DT ) int !?( volatile DT * ); 133 136 forall ( dtype DT ) int !?( const volatile DT * ); 134 137 forall ( ftype FT ) int !?( FT * ); … … 235 238 ?>?( long double, long double ), ?>=?( long double, long double ); 236 239 240 forall( dtype DT ) signed int ?<?( DT *, DT * ); 241 forall( dtype DT ) signed int ?<?( const DT *, const DT * ); 242 forall( dtype DT ) signed int ?<?( volatile DT *, volatile DT * ); 237 243 forall( dtype DT ) signed int ?<?( const volatile DT *, const volatile DT * ); 244 245 forall( dtype DT ) signed int ?>?( DT *, DT * ); 246 forall( dtype DT ) signed int ?>?( const DT *, const DT * ); 247 forall( dtype DT ) signed int ?>?( volatile DT *, volatile DT * ); 238 248 forall( dtype DT ) signed int ?>?( const volatile DT *, const volatile DT * ); 249 250 forall( dtype DT ) signed int ?<=?( DT *, DT * ); 251 forall( dtype DT ) signed int ?<=?( const DT *, const DT * ); 252 forall( dtype DT ) signed int ?<=?( volatile DT *, volatile DT * ); 239 253 forall( dtype DT ) signed int ?<=?( const volatile DT *, const volatile DT * ); 254 255 forall( dtype DT ) signed int ?>=?( DT *, DT * ); 256 forall( dtype DT ) signed int ?>=?( const DT *, const DT * ); 257 forall( dtype DT ) signed int ?>=?( volatile DT *, volatile DT * ); 240 258 forall( dtype DT ) signed int ?>=?( const volatile DT *, const volatile DT * ); 241 259
Note: See TracChangeset
for help on using the changeset viewer.