Ignore:
Timestamp:
Aug 5, 2019, 10:10:16 AM (5 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
a8d4b59
Parents:
3a55d9f
Message:

add int128 tests to gcc extensions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/gccExtensions.cfa

    r3a55d9f r298ab3d  
    1010// Created On       : Sun Aug 14 17:28:17 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Nov  6 17:54:20 2018
    13 // Update Count     : 11
     12// Last Modified On : Mon Aug  5 07:47:11 2019
     13// Update Count     : 12
    1414//
    1515
     
    115115//      int ( __attribute(()) m4 [10] )[10];
    116116
    117         return 0;
     117
     118        void f( __int128 i );
     119        void f( __uint128_t );
     120
     121        __int128 i0;
     122        f( i0 );
     123        unsigned __int128 i1;
     124        f( i1 );
     125        __int128_t i2;
     126        f( i2 );
     127        __uint128_t i3;
     128        f( i3 );
    118129}
    119130
Note: See TracChangeset for help on using the changeset viewer.