3 inline void test1(int) __attribute__ ((always_inline
));
4 inline void test2(int) __attribute__ ((always_inline
));
7 printf("test2(%d)\n", b
); //% self.expect("expression b", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["42"])
10 printf("c=%d\n", c
); //% self.expect("expression b", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["42"])
11 //% self.expect("expression c", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["84"])
16 printf("test1(%d)\n", a
);
17 test2(a
+1);//% self.runCmd("step")
18 //% self.expect("expression b", DATA_TYPES_DISPLAYED_CORRECTLY, substrs = ["24"])