Changeset cadec25
- Timestamp:
- Jul 16, 2020, 7:53:28 AM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 3f06c05
- Parents:
- 20f5eb8
- Location:
- libcfa/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
r20f5eb8 rcadec25 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jul 15 13:47:48202013 // Update Count : 110 112 // Last Modified On : Thu Jul 16 07:43:31 2020 13 // Update Count : 1102 14 14 // 15 15 … … 970 970 } // ?|? 971 971 972 #if defined( __SIZEOF_INT128__ ) 972 973 istype & ?|?( istype & is, int128 & i128 ) { 973 974 return (istype &)(is | (unsigned int128 &)i128); … … 989 990 return is; 990 991 } // ?|? 992 #endif // __SIZEOF_INT128__ 991 993 992 994 istype & ?|?( istype & is, float & f ) { -
libcfa/src/iostream.hfa
r20f5eb8 rcadec25 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Jul 14 09:24:11202013 // Update Count : 34 712 // Last Modified On : Thu Jul 16 07:43:32 2020 13 // Update Count : 348 14 14 // 15 15 … … 318 318 istype & ?|?( istype &, long long int & ); 319 319 istype & ?|?( istype &, unsigned long long int & ); 320 #if defined( __SIZEOF_INT128__ ) 320 321 istype & ?|?( istype &, int128 & ); 321 322 istype & ?|?( istype &, unsigned int128 & ); 323 #endif // __SIZEOF_INT128__ 322 324 323 325 istype & ?|?( istype &, float & );
Note: See TracChangeset
for help on using the changeset viewer.