summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-13 19:48:13 +0000
committerDan Gohman <gohman@apple.com>2010-07-13 19:48:13 +0000
commit1005bc5068345e28826a32cc081dd4667af978ff (patch)
tree649df4ebff6b168e57cad9dc51eb2f79dff8661d /docs
parent9dc8ae110f4b23df8f42fe6a09087061938a06a7 (diff)
downloadllvm-1005bc5068345e28826a32cc081dd4667af978ff.tar.gz
llvm-1005bc5068345e28826a32cc081dd4667af978ff.tar.bz2
llvm-1005bc5068345e28826a32cc081dd4667af978ff.tar.xz
Fix the Named Metadata example to make it clear which specific
construct is the named metadata. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 0eee86e8c0..4c635d3a5a 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -954,7 +954,9 @@ define [<a href="#linkage">linkage</a>] [<a href="#visibility">visibility</a>]
<h5>Syntax:</h5>
<pre class="doc_code">
+; An unnamed metadata node, which is referenced by the named metadata.
!1 = metadata !{metadata !"one"}
+; A named metadata.
!name = !{null, !1}
</pre>