Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 Purpose of this test: to test breakpoints on consecutive instructions. | 2 Purpose of this test: to test breakpoints on consecutive instructions. |
| 3 */ | 3 */ |
| 4 | 4 |
| 5 int a[7] = {1, 2, 3, 4, 5, 6, 7}; | 5 int a[7] = {1, 2, 3, 4, 5, 6, 7}; |
| 6 | 6 |
| 7 /* assert: first line of foo has more than one instruction. */ | 7 /* assert: first line of foo has more than one instruction. */ |
| 8 int foo () | 8 int foo () |
| 9 { | 9 { |
| 10 return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6]; | 10 return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6]; |
| 11 } | 11 } |
| 12 | 12 |
| 13 main() | 13 main() |
| 14 { | 14 { |
| 15 #ifdef usestubs | |
| 16 set_debug_traps (); | |
| 17 breakpoint (); | |
| 18 #endif | |
| 19 foo (); | 15 foo (); |
| 20 } | 16 } |
| OLD | NEW |