Changeset 829821c for tests/malloc.cfa


Ignore:
Timestamp:
Jan 22, 2025, 1:15:59 PM (12 months ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
1cc5c6a, 857b5f9
Parents:
a9e327a
Message:

Fix test suite to run with no warnings on gcc 12, 13, 14

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/malloc.cfa

    ra9e327a r829821c  
    6464        free( ip );
    6565
     66  #pragma GCC diagnostic push
     67  #pragma GCC diagnostic ignored "-Wpragmas" // -Walloc-size unrecognized until GCC 14
     68  #pragma GCC diagnostic ignored "-Walloc-size"
    6669        ip = (int *)malloc( 0 );
     70  #pragma GCC diagnostic pop
    6771        test_base( ip, 0, libAlign );
    6872        test_use( ip );
Note: See TracChangeset for help on using the changeset viewer.