(mwelinder@gmail.com). Announce bug fix.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12359
283413 Fix wrong sanity check
286270 vgpreload is not friendly to 64->32 bit execs, gives ld.so warnings
286374 Running cachegrind with --branch-sim=yes on 64-bit PowerPC program fails
+287260 Incorrect conditional jump or move depends on uninitialised value(s)
287858 VG_(strerror): unknown error
289699 vgdb connection in relay mode erroneously closed due to buffer overrun
289939 wish: complete monitor cmd 'leak_check' with details about leaked or reachable blocks
big_blocks_freed_list.stderr.exp big_blocks_freed_list.vgtest \
brk2.stderr.exp brk2.vgtest \
buflen_check.stderr.exp buflen_check.vgtest buflen_check.stderr.exp-kfail \
+ bug287260.stderr.exp bug287260.vgtest \
calloc-overflow.stderr.exp calloc-overflow.vgtest\
clientperm.stderr.exp \
clientperm.stdout.exp clientperm.vgtest \
big_blocks_freed_list \
brk2 \
buflen_check \
+ bug287260 \
calloc-overflow \
clientperm \
custom_alloc \
--- /dev/null
+#include <stdio.h>
+
+typedef struct {
+ unsigned int stuff : 21;
+ signed int rotation : 10;
+} Oink;
+
+int
+main (int argc, char **argv)
+{
+ volatile Oink r;
+
+ r.rotation = 45;
+ fprintf (stderr, "%d\n", r.rotation);
+ return 0;
+}
--- /dev/null
+
+45
+
+HEAP SUMMARY:
+ in use at exit: 0 bytes in 0 blocks
+ total heap usage: 0 allocs, 0 frees, 0 bytes allocated
+
+For a detailed leak analysis, rerun with: --leak-check=full
+
+For counts of detected and suppressed errors, rerun with: -v
+ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
--- /dev/null
+prog: bug287260