summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-04 05:10:48 +0000
committerChris Lattner <sabre@nondot.org>2004-08-04 05:10:48 +0000
commitac479e53a99e30057395d732a110ab9ee7787112 (patch)
tree4f81f341cf02ecf32ac08a87561b8b3ec29057c8 /docs
parent6823c9f9ff8ea83ae8daba9769485ba492541d57 (diff)
downloadllvm-ac479e53a99e30057395d732a110ab9ee7787112.tar.gz
llvm-ac479e53a99e30057395d732a110ab9ee7787112.tar.bz2
llvm-ac479e53a99e30057395d732a110ab9ee7787112.tar.xz
Fix linkage types
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ProgrammersManual.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 04f0c4f486..f3a5891b15 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1371,12 +1371,12 @@ is its address (after linking) which is guaranteed to be constant.</p>
<ul>
<li><tt>Function(const </tt><tt><a href="#FunctionType">FunctionType</a>
- *Ty, bool isInternal, const std::string &amp;N = "", Module* Parent = 0)</tt>
+ *Ty, LinkageTypes Linkage, const std::string &amp;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&nbsp;<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