Bug 443180 - The subnormal test and the ISA 3.0 test generate compiler warnings.
Summary: The subnormal test and the ISA 3.0 test generate compiler warnings.
Status: CLOSED FIXED
Alias: None
Product: valgrind
Classification: Developer tools
Component: vex (other bugs)
Version First Reported In: unspecified
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Julian Seward
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-09-30 23:07 UTC by Carl Love
Modified: 2021-10-01 20:52 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed/Implemented In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Carl Love 2021-09-30 23:07:18 UTC
The GCC compiler fixed warning on the long long types.  Depending on the version of the gcc compiler used, you may get print warnings for test_subnormal.c and test_isa_3_0.c

Need an explicit cast of the print value to eliminate the warnings.
Comment 1 Carl Love 2021-09-30 23:13:13 UTC
Fix committed.

commit bcbfa9e9006aa377a4ed19919af9be6e4ac19267 (HEAD -> master)
Author: Carl Love <cel@us.ibm.com>
Date:   Tue Sep 28 20:58:22 2021 +0000

    fix compiler print format warnings in test_isa_3_0.c
    
    GCC fixed the compiler warnings long long types.  Add explicit
    casts so gcc will not generate compile warnings.