Package: valgrind
Version: 3.13.0-2

If you compile the following program and run it with Valgrind on i386:

int main(int argc, char **argv) {
  return 0;
}

The result is ten errors that look like this:

==757== Conditional jump or move depends on uninitialised value(s)
==757==    at 0x401BB0D: ??? (in /lib/i386-linux-gnu/ld-2.27.so)
==757==    by 0x4008D85: ??? (in /lib/i386-linux-gnu/ld-2.27.so)

This makes Valgrind unusable on i386 because every invocation will
report errors.

This is probably caused by one of:

1) Valgrind (unlikely)
2) Default suppression files not being up to date
3) Something in LD

Filing this issue against Valgrind, feel free to reassign if the bug
is elsewhere.

Reply via email to