Skip to content

Commit c4a31a4

Browse files
committed
Version 8.0.1 - bug fix release.
See the README.md file, but fixes a bug reported by Oleg Skinderev via GitHub. Also includes changes from a number of internal releases (all the 7.x releases).
1 parent 873df89 commit c4a31a4

File tree

112 files changed

+1980
-1232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+1980
-1232
lines changed

Output/makefile

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @(#)$Id: makefile,v 1.5 2017/10/18 05:56:33 jleffler Exp $
1+
# @(#)$Id: makefile,v 1.6 2019/01/26 07:29:50 jonathanleffler Exp $
22
#
33
# Makefile for SCC test output directory
44

@@ -109,6 +109,28 @@ FILES = \
109109
scc.test-08.example2-ec.2 \
110110
scc.test-08.example2-en.1 \
111111
scc.test-08.example2-en.2 \
112+
scc.test-09.trailing-whisp-e.1 \
113+
scc.test-09.trailing-whisp-e.2 \
114+
scc.test-09.trailing-whisp-ec.1 \
115+
scc.test-09.trailing-whisp-ec.2 \
116+
scc.test-09.trailing-whisp-ect.1 \
117+
scc.test-09.trailing-whisp-ect.2 \
118+
scc.test-09.trailing-whisp-en.1 \
119+
scc.test-09.trailing-whisp-en.2 \
120+
scc.test-09.trailing-whisp-ent.1 \
121+
scc.test-09.trailing-whisp-ent.2 \
122+
scc.test-09.trailing-whisp-et.1 \
123+
scc.test-09.trailing-whisp-et.2 \
124+
scc.test-09.trailing-whisp-t.1 \
125+
scc.test-09.trailing-whisp-t.2 \
126+
scc.test-10.endcomment-c.1 \
127+
scc.test-10.endcomment-c.2 \
128+
scc.test-10.endcomment-e.1 \
129+
scc.test-10.endcomment-e.2 \
130+
scc.test-10.endcomment-n.1 \
131+
scc.test-10.endcomment-n.2 \
132+
scc.test-10.endcomment-t.1 \
133+
scc.test-10.endcomment-t.2 \
112134

113135
all: ${FILES}
114136

Output/scc-bogus.binary-c++11.1

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77

88

9-
10-
11-
int i = 0b'0100;
12-
int j = 0b0100';
13-
int k = 0b2;
14-
int l = 0b1'20'0101'1111'0000;
15-
int m = 0b1'02;
16-
int n = 0B10''11;
9+
10+
11+
int i = 0b'0100;
12+
int j = 0b0100';
13+
int k = 0b2;
14+
int l = 0b1'20'0101'1111'0000;
15+
int m = 0b1'02;
16+
int n = 0B10''11;

Output/scc-bogus.binary-c++14.1

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77

88

9-
10-
11-
int i = 0b'0100;
12-
int j = 0b0100';
13-
int k = 0b2;
14-
int l = 0b1'20'0101'1111'0000;
15-
int m = 0b1'02;
16-
int n = 0B10''11;
9+
10+
11+
int i = 0b'0100;
12+
int j = 0b0100';
13+
int k = 0b2;
14+
int l = 0b1'20'0101'1111'0000;
15+
int m = 0b1'02;
16+
int n = 0B10''11;

Output/scc-bogus.binary-c++17.1

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77

88

9-
10-
11-
int i = 0b'0100;
12-
int j = 0b0100';
13-
int k = 0b2;
14-
int l = 0b1'20'0101'1111'0000;
15-
int m = 0b1'02;
16-
int n = 0B10''11;
9+
10+
11+
int i = 0b'0100;
12+
int j = 0b0100';
13+
int k = 0b2;
14+
int l = 0b1'20'0101'1111'0000;
15+
int m = 0b1'02;
16+
int n = 0B10''11;

Output/scc-bogus.binary-c.1

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77

88

9-
10-
11-
int i = 0b'0100;
12-
int j = 0b0100';
13-
int k = 0b2;
14-
int l = 0b1'20'0101'1111'0000;
15-
int m = 0b1'02;
16-
int n = 0B10''11;
9+
10+
11+
int i = 0b'0100;
12+
int j = 0b0100';
13+
int k = 0b2;
14+
int l = 0b1'20'0101'1111'0000;
15+
int m = 0b1'02;
16+
int n = 0B10''11;

Output/scc-bogus.ucns-c++11.1

+64-64
Original file line numberDiff line numberDiff line change
@@ -6,86 +6,86 @@
66

77

88

9-
10-
11-
12-
13-
14-
15-
extern int id\u0xyz;
16-
extern int id\u01xyz;
17-
extern int id\u012xyz;
18-
extern int id\u0123xyz;
19-
extern int \U000AFFF0;
20-
extern int \U000AFFFxyz;
21-
extern int \U000AFFxyz;
22-
extern int \U000AFxyz;
23-
extern int \U000Axyz;
24-
extern int \U000xyz;
25-
extern int \U0Fxyz;
26-
extern int \U0xyz;
27-
28-
29-
9+
10+
11+
12+
13+
14+
15+
extern int id\u0xyz;
16+
extern int id\u01xyz;
17+
extern int id\u012xyz;
18+
extern int id\u0123xyz;
19+
extern int \U000AFFF0;
20+
extern int \U000AFFFxyz;
21+
extern int \U000AFFxyz;
22+
extern int \U000AFxyz;
23+
extern int \U000Axyz;
24+
extern int \U000xyz;
25+
extern int \U0Fxyz;
26+
extern int \U0xyz;
27+
28+
29+
3030
extern char bogus_ucns[];
31-
char bogus_ucns[] =
31+
char bogus_ucns[] =
3232
"\u0000"
3333
"\u0023"
3434
"\u0025"
3535
"\u003F"
3636
"\u0041"
3737
"\u005F"
3838
"\u0061"
39-
"\uD800"
40-
"\uDFFF"
41-
"\uE000"
42-
"\uF8FF"
43-
"\U000F0000"
44-
"\U00100000"
45-
"\U0010FFFF"
46-
"\U00110000"
39+
"\uD800"
40+
"\uDFFF"
41+
"\uE000"
42+
"\uF8FF"
43+
"\U000F0000"
44+
"\U00100000"
45+
"\U0010FFFF"
46+
"\U00110000"
4747
"\u007F"
4848
"\u0080"
4949
"\u009F"
50-
51-
52-
53-
"\U0001FFFE"
54-
"\U0001FFFF"
55-
"\U0002FFFE"
56-
"\U0002FFFF"
57-
"\U0003FFFE"
58-
"\U0003FFFF"
59-
"\U0004FFFE"
60-
"\U0004FFFF"
61-
"\U0005FFFE"
62-
"\U0005FFFF"
63-
"\U0006FFFE"
64-
"\U0006FFFF"
65-
"\U0007FFFE"
66-
"\U0007FFFF"
67-
"\U0008FFFE"
68-
"\U0008FFFF"
69-
"\U0009FFFE"
70-
"\U0009FFFF"
71-
"\U000AFFFE"
72-
"\U000AFFFF"
73-
"\U000BFFFE"
74-
"\U000BFFFF"
75-
"\U000CFFFE"
76-
"\U000CFFFF"
77-
"\U000DFFFE"
78-
"\U000DFFFF"
79-
"\U000EFFFE"
80-
"\U000EFFFF"
50+
51+
52+
53+
"\U0001FFFE"
54+
"\U0001FFFF"
55+
"\U0002FFFE"
56+
"\U0002FFFF"
57+
"\U0003FFFE"
58+
"\U0003FFFF"
59+
"\U0004FFFE"
60+
"\U0004FFFF"
61+
"\U0005FFFE"
62+
"\U0005FFFF"
63+
"\U0006FFFE"
64+
"\U0006FFFF"
65+
"\U0007FFFE"
66+
"\U0007FFFF"
67+
"\U0008FFFE"
68+
"\U0008FFFF"
69+
"\U0009FFFE"
70+
"\U0009FFFF"
71+
"\U000AFFFE"
72+
"\U000AFFFF"
73+
"\U000BFFFE"
74+
"\U000BFFFF"
75+
"\U000CFFFE"
76+
"\U000CFFFF"
77+
"\U000DFFFE"
78+
"\U000DFFFF"
79+
"\U000EFFFE"
80+
"\U000EFFFF"
8181
;
8282

83-
83+
8484
extern char valid_ucns[];
8585
char valid_ucns[] =
86-
86+
8787
"\u0024 ($), \u0040 (@), or \u0060 (`)"
88-
88+
8989
"\u00A8, \u00AA, \u00AD, \u00AF, \u00B2−\u00B5, \u00B7−\u00BA, \u00BC−\u00BE, \u00C0−\u00D6,"
9090
"\u00D8−\u00F6, \u00F8−\u00FF"
9191
"\u0100−\u167F, \u1681−\u180D, \u180F−\u1FFF"

0 commit comments

Comments
 (0)