projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c38ef54
)
Put correct link in example
author
Bill Wendling
<isanbard@gmail.com>
Mon, 22 Oct 2007 05:10:05 +0000
(
05:10
+0000)
committer
Bill Wendling
<isanbard@gmail.com>
Mon, 22 Oct 2007 05:10:05 +0000
(
05:10
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43216
91177308
-0d34-0410-b5e6-
96231b3b80d8
docs/LangRef.html
patch
|
blob
|
history
diff --git
a/docs/LangRef.html
b/docs/LangRef.html
index 51aae8840551b3e31ec103214be23185af849785..f6895a09ee7e179b2f70456f13b2f78c631cf393 100644
(file)
--- a/
docs/LangRef.html
+++ b/
docs/LangRef.html
@@
-2788,9
+2788,8
@@
this <tt>store</tt> with other volatile <tt>load</tt> and <tt><a
at the location specified by the '<tt><pointer></tt>' operand.</p>
<h5>Example:</h5>
<pre> %ptr = <a href="#i_alloca">alloca</a> i32 <i>; yields {i32*}:ptr</i>
- <a
- href="#i_store">store</a> i32 3, i32* %ptr <i>; yields {void}</i>
- %val = load i32* %ptr <i>; yields {i32}:val = i32 3</i>
+ store i32 3, i32* %ptr <i>; yields {void}</i>
+ %val = <a href="#i_load">load</a> i32* %ptr <i>; yields {i32}:val = i32 3</i>
</pre>
</div>