mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-19 13:56:16 +00:00
21 lines
727 B
Plaintext
21 lines
727 B
Plaintext
|
|
On s390 we might see 2 or 3 errors.
|
|
Conditional jump or move depends on uninitialised value(s)
|
|
at 0x........: foo (partiallydefinedeq.c:15)
|
|
by 0x........: main (partiallydefinedeq.c:37)
|
|
|
|
Conditional jump or move depends on uninitialised value(s)
|
|
at 0x........: foo (partiallydefinedeq.c:15)
|
|
by 0x........: main (partiallydefinedeq.c:52)
|
|
|
|
|
|
HEAP SUMMARY:
|
|
in use at exit: ... bytes in ... blocks
|
|
total heap usage: ... allocs, ... frees, ... bytes allocated
|
|
|
|
For a detailed leak analysis, rerun with: --leak-check=full
|
|
|
|
For counts of detected and suppressed errors, rerun with: -v
|
|
Use --track-origins=yes to see where uninitialised values come from
|
|
ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
|