]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.chill/gch922.ch
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.chill / gch922.ch
CommitLineData
6bf53072
WM
1xx : module
2
3dcl a chars(200) varying init := (70)'^(0)' // "Jason""^(0,5)""Hugo^(10)" // (70)'^(1)';
4dcl b chars(20) varying init := "Jason""^(0,5)""Hugo^(10)";
5dcl c chars(256) varying init := (70)'a' // "^(0,5)Jason" // (70)'b';
6dcl d char init := '^(11)';
7
8bulk: PROC ();
9END bulk;
10
11a := (50) '^(255,0,222,127)';
12b := (1)'^(200)';
13d := 'a';
14
15c:= (256)" ";
16
17DO FOR i:= 0 BY 1 TO 255;
18 c (255-i) := char (i);
19OD;
20
21bulk ();
22
23end xx;