1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Minor fixes to tutorial, patch by Benjamin Meyer!

llvm-svn: 125544
This commit is contained in:
Chris Lattner 2011-02-15 00:24:32 +00:00
parent f800339278
commit f661ea3f4a

View File

@ -353,8 +353,8 @@ above.</p>
</div>
<p>The Module symbol table works just like the Function symbol table when it
comes to name conflicts: if a new function is created with a name was previously
added to the symbol table, it will get implicitly renamed when added to the
comes to name conflicts: if a new function is created with a name that was previously
added to the symbol table, the new function will get implicitly renamed when added to the
Module. The code above exploits this fact to determine if there was a previous
definition of this function.</p>