2629574cc6f4bb0479cdc7ee4a66746ccee2433c
[pintos-anon] / src / tests / vm / pt-grow-bad.c
1 #include <string.h>
2 #include "tests/arc4.h"
3 #include "tests/cksum.h"
4 #include "tests/lib.h"
5 #include "tests/main.h"
6
7 void
8 test_main (void)
9 {
10   /* Read from an address 4,096 bytes below the stack pointer.
11      Must kill the program. */
12   asm volatile ("mov %eax, [%esp - 4096]");
13 }