]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Suppress a clang warning about an uninitialised variable.
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 24 Jun 2014 11:35:45 +0000 (11:35 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 24 Jun 2014 11:35:45 +0000 (11:35 +0000)
Fixes BZ #329694.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14092

NEWS
docs/internals/3_9_BUGSTATUS.txt
memcheck/tests/Makefile.am

diff --git a/NEWS b/NEWS
index f08ef2d301ccfa971843a987e18210370733d495..9df51e9b7dc8f9b4f5efa00b716ff19f9d1e68e7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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
index 9ebd0df67f460d2770754f5d91b29589d6d73b0e..a3da971ff52cd500b2994f58f52a3c794637146d 100644 (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
index 4e52ee0e97e516d1cddf8c4fb6f865027a2688d3..1dddde37eccaa4b097762e5849c40a380a863d28 100644 (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@