mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
Add a suppression to handle a "Jump to the invalid address..." message that gets generated on power. This is a variation of the existing suppressions. While here, I also updated the "prog:" line in the vgtest file to reference the supp_unknown executable, versus the badjump executable. They share the same source code, so I think this is effectively cosmetic. This patch fixes Vagrind bugzilla 347686 git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15233
23 lines
331 B
Plaintext
23 lines
331 B
Plaintext
# This contains a match against a "???" entry
|
|
{
|
|
<insert a suppression name here>
|
|
Memcheck:Jump
|
|
obj:*
|
|
fun:(below main)
|
|
}
|
|
|
|
{
|
|
<insert a suppression name here>
|
|
Memcheck:Jump
|
|
obj:*
|
|
fun:main
|
|
}
|
|
|
|
{
|
|
<insert_a_suppression_name_here>
|
|
Memcheck:Jump
|
|
obj:*
|
|
fun:generic_start_main.isra.0
|
|
fun:(below main)
|
|
}
|