diff options
author | Dinu Blanovschi <git@dnbln.dev> | 2025-02-17 13:11:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-17 12:11:36 +0000 |
commit | 9c9157b25662cedd63426f02cdbde7853454b38e (patch) | |
tree | b2fb0e8b0a56dfcb10ecbf3e3ba786d807fc5fc0 /llvm/docs/tutorial/MyFirstLanguageFrontend | |
parent | 4c4fc4650fa66361f19f8c8b60768987fe48a90f (diff) | |
download | llvm-9c9157b25662cedd63426f02cdbde7853454b38e.zip llvm-9c9157b25662cedd63426f02cdbde7853454b38e.tar.gz llvm-9c9157b25662cedd63426f02cdbde7853454b38e.tar.bz2 |
Fix typo in LangImpl03.rst (#127389)
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
-rw-r--r-- | llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst index f41c5ed..001a314 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst @@ -313,7 +313,7 @@ in "``TheModule``"s symbol table. Finally, we set the name of each of the function's arguments according to the names given in the Prototype. This step isn't strictly necessary, but keeping the names consistent makes the IR more readable, and allows subsequent code to -refer directly to the arguments for their names, rather than having to look up +refer directly to the arguments for their names, rather than having to look them up in the Prototype AST. At this point we have a function prototype with no body. This is how LLVM IR |