diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-09-25 18:08:26 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-09-25 18:08:26 +0200 |
commit | a3dee93989b9fdd99b8a22a2da7f72bcd2ba50c2 (patch) | |
tree | 947b4ece2d69d247d963a592bc037f00b8990e24 /README.md | |
parent | 6eb6ad9f574c783d471f6a863299af25b6f5a8c7 (diff) | |
download | llvm-kaleidoscope-rs-chapter4.tar.gz llvm-kaleidoscope-rs-chapter4.zip |
ch4: update README + lljit rustdocschapter4
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,6 +15,7 @@ out the corresponding tag for the chapter. chapter1 chapter2 chapter3 +chapter4 ``` Names of variables and functions as well as the structure of the functions are @@ -25,7 +26,7 @@ tutorial. One further note on the llvm API, instead of using the llvm `C++` API we are going to use the llvm `C` API and build our own safe wrapper specialized for this tutorial. The wrapper offers a similar interface as the `C++` API and is -implemented in [`src/llvm.rs`](src/llvm.rs) +implemented in [`src/llvm/`](src/llvm/) ## Documentation |