Suppress a clang warning about an uninitialised variable.

Fixes BZ #329694.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14092
This commit is contained in:
Florian Krohm 2014-06-24 11:35:45 +00:00
parent 9578661efa
commit a4923d3057
3 changed files with 3 additions and 1 deletions

1
NEWS
View File

@ -116,6 +116,7 @@ where XXXXXX is the bug number as listed below.
328711 valgrind.1 manpage "memcheck options" section is badly generated
328878 vex amd64->IR pcmpestri SSE4.2 instruction is unsupported 0x14
329612 Incorrect handling of AT_BASE for image execution
329694 clang warns about using uninitialized variable
329956 valgrind crashes when lmw/stmw instructions are used on ppc64
330228 mmap must align to VKI_SHMLBA on mips32
330257 LLVM does not support `-mno-dynamic-no-pic` option

View File

@ -79,7 +79,6 @@ For bugs reported before this time, see 3_8_BUGSTATUS.txt
=== Tools/Memcheck =====================================================
329619 leak-check gets assertion failure when nesting VALGRIND_MALLOCLIKE_BLOCK
329694 clang warns about using uninitialized variable
330617 ppc false positive conditional jump depends on uninitialised value
331833 the memory initialized by semget(key, 0, GETALL, semun)
is treated as uninitialized on some platforms

View File

@ -443,6 +443,8 @@ origin6_fp_CFLAGS = $(AM_CFLAGS) -O
# because then we can't intercept it
overlap_CFLAGS = $(AM_CFLAGS) -fno-builtin-memcpy -fno-builtin-strcpy
pdb_realloc_CFLAGS = $(AM_CFLAGS) @FLAG_W_NO_UNINITIALIZED@
str_tester_CFLAGS = $(AM_CFLAGS) -Wno-shadow
supp_CFLAGS = $(AM_CFLAGS) @FLAG_W_NO_UNINITIALIZED@