fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / libgloss / testsuite / libgloss.all / printf.c
blob4aff104a1dc74cc6f739a23225d5da9d7c0603bc
1 /* Oki bug report [OKI006]
3 The following program is no work.
5 illegal trap: 0x12 pc=d000d954
6 d000d954 08000240 NOP
7 */
9 #include <stdio.h>
11 main ()
13 int i, j, k;
15 print ("\r\nDemo Program Start\r\n");
16 printf ("Value = %d, %d\r\n", 2, 1);
17 pass ("printf [OKI006]");
19 /* Oki bug report [OKI007]
21 iprintf is no work.
22 "Value = 2, 1" string is not displayed.
24 break instruction trap (9) pc=4003c
25 0004003c 00000000 BREAK 0x0,0x0
27 print ("\r\nDemo Program Start\r\n");
28 iprintf ("Value = %d, %d\r\n", 2, 1);
29 pass ("iprintf [OKI007]");
30 fflush (stdout);