[llvm] Update LangImpl03.rst (PR #127389)
Dinu Blanovschi via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 16 03:45:04 PST 2025
https://github.com/dnbln created https://github.com/llvm/llvm-project/pull/127389
None
>From be25f91e92a90f25a7bf53342189728be6095af6 Mon Sep 17 00:00:00 2001
From: Dinu Blanovschi <git at dnbln.dev>
Date: Sun, 16 Feb 2025 12:43:37 +0100
Subject: [PATCH] Update LangImpl03.rst
---
llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
index f41c5ed0ad0cd..001a314cb1331 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
More information about the llvm-commits
mailing list