You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ The root unit of organization of an LLVM IR program is a `Module`
13
13
let module =Module(name: "main")
14
14
```
15
15
16
-
LLVM IR is construction is done with an `IRBuilder`object. An `IRBuilder` is a cursor pointed inside a context, and as such has ways of extending that context and moving around inside of it.
16
+
LLVM IR construction is handled by `IRBuilder`objects. An `IRBuilder` is a cursor pointed inside a context, and as such has ways of extending that context and moving around inside of it.
17
17
18
-
Defining a simple function and moving the cursor to a point where we can begin inserting instructions is done like so:
18
+
Defining a function and moving the cursor to a point where we can begin inserting instructions is done like so:
0 commit comments