Rev 2973 | Rev 2982 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2973 | Rev 2978 | ||
|---|---|---|---|
| Line 51... | Line 51... | ||
| 51 | : "%eax","%ecx" /* all scratch registers clobbered */ |
51 | : "%eax","%ecx" /* all scratch registers clobbered */ |
| 52 | ); |
52 | ); |
| 53 | } |
53 | } |
| 54 | 54 | ||
| 55 | 55 | ||
| 56 | static void test(void) |
56 | /*static void test(void) |
| 57 | { |
57 | { |
| 58 | kputint(-1); |
58 | kputint(-1); |
| 59 | kputint(42); |
59 | kputint(42); |
| 60 | while(1); |
60 | while(1); |
| 61 | } |
61 | }*/ |
| 62 | 62 | ||
| 63 | int main(int argc, char *argv[]) |
63 | int main(int argc, char *argv[]) |
| 64 | { |
64 | { |
| 65 | test(); |
65 | // test(); |
| 66 | /* Unreachable, yet. Just to create a relocation entry */ |
66 | /* Unreachable, yet. Just to create a relocation entry */ |
| 67 | test_func(); |
67 | test_func(); |
| 68 | return 0; |
68 | return 0; |
| 69 | } |
69 | } |
| 70 | 70 | ||