Skip to content

Commit c8b8a40

Browse files
committed
LLVM target version
1 parent 2ef31b8 commit c8b8a40

File tree

15 files changed

+2437
-883
lines changed

15 files changed

+2437
-883
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,10 @@ docs/
2222

2323
# Code coverage
2424
*.lst
25+
26+
# Other files for project
27+
*.bas
28+
Parser.d
29+
dbasic
30+
a.out
31+
d.m4

Driver.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ int main(const string[] args) {
3232
}
3333
if (!symtab.errors) {
3434
auto generate = {
35-
head.prelude();
36-
head.codegen();
37-
head.interlude();
35+
head.prolog();
3836
symtab.codegen();
37+
head.codegen();
38+
head.epilog();
3939
};
4040
msg = collectExceptionMsg(generate());
4141
if (msg) {

0 commit comments

Comments
 (0)