[llvm-commits] CVS: llvm/docs/ProgrammersManual.html
Chris Lattner
lattner at cs.uiuc.edu
Tue Aug 3 22:11:01 PDT 2004
Changes in directory llvm/docs:
ProgrammersManual.html updated: 1.67 -> 1.68
---
Log message:
Fix linkage types
---
Diffs of the changes: (+4 -4)
Index: llvm/docs/ProgrammersManual.html
diff -u llvm/docs/ProgrammersManual.html:1.67 llvm/docs/ProgrammersManual.html:1.68
--- llvm/docs/ProgrammersManual.html:1.67 Sun Jul 18 16:44:13 2004
+++ llvm/docs/ProgrammersManual.html Wed Aug 4 00:10:48 2004
@@ -1371,12 +1371,12 @@
<ul>
<li><tt>Function(const </tt><tt><a href="#FunctionType">FunctionType</a>
- *Ty, bool isInternal, const std::string &N = "", Module* Parent = 0)</tt>
+ *Ty, LinkageTypes Linkage, const std::string &N = "", Module* Parent = 0)</tt>
<p>Constructor used when you need to create new <tt>Function</tt>s to add
the the program. The constructor must specify the type of the function to
- create and whether or not it should start out with internal or external
- linkage. The <a href="#FunctionType"><tt>FunctionType</tt></a> argument
+ create and what type of linkage the function should have. The <a
+ href="#FunctionType"><tt>FunctionType</tt></a> argument
specifies the formal arguments and return value for the function. The same
<a href="#FunctionTypel"><tt>FunctionType</tt></a> value can be used to
create multiple functions. The <tt>Parent</tt> argument specifies the Module
@@ -2044,7 +2044,7 @@
<a href="mailto:dhurjati at cs.uiuc.edu">Dinakar Dhurjati</a> and
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2004/07/18 21:44:13 $
+ Last modified: $Date: 2004/08/04 05:10:48 $
</address>
</body>
More information about the llvm-commits
mailing list