Changeset a0ac7b0


Ignore:
Timestamp:
Apr 13, 2021, 9:40:03 PM (3 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
37477ef, a195d6e
Parents:
1d25654
Message:

32-bit, #ifdef 128-bit test and adjust expected output

Location:
tests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tests/.expect/math.nast.x86.txt

    r1d25654 ra0ac7b0  
    17174 16
    1818log:0. 0. 0. 0.346574+0.785398i 0.346573590279973+0.785398163397448i 0.346573590279972655+0.78539816339744831i
     19log2:10 17 23
     20log2:10 17 23
     21log2:42 49 55
    1922log2:3. 3. 3.
    2023log10:2. 2. 2.
  • tests/math.cfa

    r1d25654 ra0ac7b0  
    1010// Created On       : Fri Apr 22 14:59:21 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr 13 17:28:58 2021
    13 // Update Count     : 122
     12// Last Modified On : Tue Apr 13 21:04:48 2021
     13// Update Count     : 123
    1414//
    1515
     
    7272        sout | "log2:" | log2( 1024l ) | log2( 2l \ 17u ) | log2( 2l \ 23u );
    7373        sout | "log2:" | log2( 1024ll ) | log2( 2ll \ 17u ) | log2( 2ll \ 23u );
     74#if defined( __SIZEOF_INT128__ )
    7475        sout | "log2:" | log2( 1024l128 ) | log2( 2l128 \ 17u ) | log2( 2l128 \ 23u );
     76#endif // __SIZEOF_INT128__
    7577        sout | "log2:" | log2( 8.0F ) | log2( 8.0D ) | log2( 8.0L );
    7678        sout | "log10:" | log10( 100.0F ) | log10( 100.0D ) | log10( 100.0L );
Note: See TracChangeset for help on using the changeset viewer.