This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH 4/4] [i386, testsuite] Add tests, fix bug in check_avx2_hw_available
On 08/23/2017 08:26 AM, Uros Bizjak wrote:
>> @@ -1822,6 +1845,7 @@ proc check_avx2_hw_available { } {
>> expr 0
>> } else {
>> check_runtime_nocache avx2_hw_available {
>> + #include <stddef.h>
> Why is the above include needed?
It is only needed to #define NULL. Without the include, I've had this
function fail due to NULL being undefined.
Daniel