Skip to content

Commit 7a1b28c

Browse files
committed
dev-index -> index
1 parent 0838a88 commit 7a1b28c

46 files changed

Lines changed: 121 additions & 3690 deletions

Some content is hidden

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

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ dev: install-production
1313
./a.out
1414

1515
build: compile-production
16-
time env $(LSTSFLAGS) ./production --v23 --c -o deploy1.c SRC/dev-index.lsts
16+
time env $(LSTSFLAGS) ./production --v23 --c -o deploy1.c SRC/index.lsts
1717
$(CC) $(CFLAGS) deploy1.c -o deploy1
18-
time env $(LSTSFLAGS) ./deploy1 --v23 --c -o deploy2.c SRC/dev-index.lsts
18+
time env $(LSTSFLAGS) ./deploy1 --v23 --c -o deploy2.c SRC/index.lsts
1919
diff deploy1.c deploy2.c
2020
mv deploy1.c BOOTSTRAP/cli.c
2121
rm -f deploy1 deploy1.c deploy2.c
@@ -50,7 +50,7 @@ compile-bootstrap:
5050

5151
compile-production: compile-bootstrap
5252
rm -f production
53-
$(LSTSFLAGS) ./bootstrap.exe --v23 --c -o production.c SRC/dev-index.lsts
53+
$(LSTSFLAGS) ./bootstrap.exe --v23 --c -o production.c SRC/index.lsts
5454
$(CC) $(CFLAGS) -o production production.c
5555
rm -f production.c
5656

PLUGINS/BACKEND/C/dev-mangle-identifier.lsts

Lines changed: 0 additions & 70 deletions
This file was deleted.

PLUGINS/BACKEND/C/dev-std-c-mangle-type.lsts

Lines changed: 0 additions & 134 deletions
This file was deleted.

PLUGINS/BACKEND/C/mangle-identifier.lsts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ let mangle-identifier(kt: Type): S = (
4040
let r = mangle-identifier(tag);
4141
if parameters.length > 0 then r = r + mangle-identifier(c"<");
4242
let c-has-prev = false;
43-
for list c in parameters {
43+
for vector c in parameters {
4444
if c-has-prev { r = r + mangle-identifier(c",") };
4545
r = r + mangle-identifier(c);
4646
c-has-prev = true;

PLUGINS/BACKEND/C/std-c-mangle-type.lsts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ let std-c-mangle-type-internal-internal(tt: Type, blame: AST): S = (
8585
if parameters.length > 0 {
8686
r = r + mangle-identifier(c"<");
8787
let pi = 0;
88-
for list p in parameters {
88+
for vector p in parameters {
8989
if pi > 0 then r = r + mangle-identifier(c",");
9090
r = r + std-c-mangle-type-simple(p, blame);
9191
pi = pi + 1;
@@ -120,7 +120,7 @@ let std-c-mangle-type-simple(tt: Type, blame: AST): S = (
120120
if parameters.length > 0 {
121121
r = r + mangle-identifier(c"<");
122122
let pi = 0;
123-
for list p in parameters {
123+
for vector p in parameters {
124124
if pi > 0 then r = r + mangle-identifier(c",");
125125
r = r + std-c-mangle-type-simple(p, blame);
126126
pi = pi + 1;

0 commit comments

Comments
 (0)