Skip to content

Commit b40bdd4

Browse files
committed
[README][Chapter 3] generate code
1 parent b2f5208 commit b40bdd4

23 files changed

+1265
-39
lines changed

README.in.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1355,6 +1355,9 @@ attributes #0 = { "no-frame-pointer-elim"="false" }
13551355
; ModuleID = 'main'
13561356
```
13571357

1358+
Full code for this chapter is available
1359+
[here](https://github.com/jauhien/iron-kaleidoscope/tree/master/chapters/3).
1360+
13581361
## Extending Kaleidoscope: control flow
13591362

13601363
## Extending Kaleidoscope: user-defined operators

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2476,6 +2476,9 @@ attributes #0 = { "no-frame-pointer-elim"="false" }
24762476
; ModuleID = 'main'
24772477
```
24782478

2479+
Full code for this chapter is available
2480+
[here](https://github.com/jauhien/iron-kaleidoscope/tree/master/chapters/3).
2481+
24792482
## Extending Kaleidoscope: control flow
24802483

24812484
## Extending Kaleidoscope: user-defined operators

chapters/3/Cargo.lock

Lines changed: 152 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chapters/3/Cargo.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[package]
2+
3+
name = "iron_kaleidoscope"
4+
version = "0.0.1"
5+
authors = ["Jauhien Piatlicki <jauhien@gentoo.org>"]
6+
7+
[dependencies]
8+
docopt = "*"
9+
docopt_macros = "*"
10+
regex = "*"
11+
regex_macros = "*"
12+
rustc-serialize = "*"
13+
llvm-sys = "*"
14+
15+
[dependencies.iron_llvm]
16+
git = "https://github.com/jauhien/iron-llvm.git"

0 commit comments

Comments
 (0)