Revert Intel-style assembly back to AT&T-style.
[pintos-anon] / src / tests / userprog / child-bad.c
1 #include "tests/lib.h"
2 #include "tests/main.h"
3
4 void
5 test_main (void) 
6 {
7   asm volatile ("movl $0x20101234, %esp; int $0x30");
8   fail ("should have exited with -1");
9 }