mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
seem to be simply duplication of the x86 instruction set tests into the addrcheck and helgrind trees. I'm not sure what this duplication achieves. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3264
9 lines
137 B
C
9 lines
137 B
C
#include "../memcheck.h"
|
|
|
|
int main()
|
|
{
|
|
VALGRIND_CREATE_BLOCK(0x1000, 0x1000, "magic foople zone");
|
|
*(char *)0x1000 = 'x';
|
|
return 0;
|
|
}
|