summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Chisnall <csdavec@swan.ac.uk>2010-04-30 19:27:35 +0000
committerDavid Chisnall <csdavec@swan.ac.uk>2010-04-30 19:27:35 +0000
commitb492b81a94cb1337e63877459a386b1cc8ff0040 (patch)
tree3d5b584dd041c4d2477babb3b60001636d9c01a8
parenta9d4a6fb280d3b11c7610f03ba5c49ecb373ec9f (diff)
downloadbcm5719-llvm-b492b81a94cb1337e63877459a386b1cc8ff0040.tar.gz
bcm5719-llvm-b492b81a94cb1337e63877459a386b1cc8ff0040.zip
Fixed @ctor / @dtor the wrong way around in last commit.
llvm-svn: 102741
-rw-r--r--llvm/docs/LangRef.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html
index b8a5fb23c50..3a2c65961c3 100644
--- a/llvm/docs/LangRef.html
+++ b/llvm/docs/LangRef.html
@@ -2798,7 +2798,7 @@ should not be exposed to source languages.</p>
<div class="doc_text">
<pre>
%0 = type { i32, void ()* }
-@llvm.global_ctors = appending global [1 x %0] [%0 { i32 65535, void ()* @dtor }]
+@llvm.global_ctors = appending global [1 x %0] [%0 { i32 65535, void ()* @ctor }]
</pre>
<p>The <tt>@llvm.global_ctors</tt> array contains a list of constructor functions and associated priorities. The functions referenced by this array will be called in ascending order of priority (i.e. lowest first) when the module is loaded. The order of functions with the same priority is not defined.
</p>
@@ -2813,7 +2813,7 @@ should not be exposed to source languages.</p>
<div class="doc_text">
<pre>
%0 = type { i32, void ()* }
-@llvm.global_dtors = appending global [1 x %0] [%0 { i32 65535, void ()* @ctor }]
+@llvm.global_dtors = appending global [1 x %0] [%0 { i32 65535, void ()* @dtor }]
</pre>
<p>The <tt>@llvm.global_dtors</tt> array contains a list of destructor functions and associated priorities. The functions referenced by this array will be called in descending order of priority (i.e. highest first) when the module is loaded. The order of functions with the same priority is not defined.
OpenPOWER on IntegriCloud