Revert Intel-style assembly back to AT&T-style.
[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 ("movl -4096(%esp), %eax");
13 }