Changeset cadec25


Ignore:
Timestamp:
Jul 16, 2020, 7:53:28 AM (4 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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
Message:

#ifdef int128 code for reading

Location:
libcfa/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    r20f5eb8 rcadec25  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Jul 15 13:47:48 2020
    13 // Update Count     : 1101
     12// Last Modified On : Thu Jul 16 07:43:31 2020
     13// Update Count     : 1102
    1414//
    1515
     
    970970        } // ?|?
    971971
     972#if defined( __SIZEOF_INT128__ )
    972973        istype & ?|?( istype & is, int128 & i128 ) {
    973974                return (istype &)(is | (unsigned int128 &)i128);
     
    989990                return is;
    990991        } // ?|?
     992#endif // __SIZEOF_INT128__
    991993
    992994        istype & ?|?( istype & is, float & f ) {
  • libcfa/src/iostream.hfa

    r20f5eb8 rcadec25  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jul 14 09:24:11 2020
    13 // Update Count     : 347
     12// Last Modified On : Thu Jul 16 07:43:32 2020
     13// Update Count     : 348
    1414//
    1515
     
    318318        istype & ?|?( istype &, long long int & );
    319319        istype & ?|?( istype &, unsigned long long int & );
     320#if defined( __SIZEOF_INT128__ )
    320321        istype & ?|?( istype &, int128 & );
    321322        istype & ?|?( istype &, unsigned int128 & );
     323#endif // __SIZEOF_INT128__
    322324
    323325        istype & ?|?( istype &, float & );
Note: See TracChangeset for help on using the changeset viewer.