[llvm-commits] [llvm] r43216 - /llvm/trunk/docs/LangRef.html
Bill Wendling
isanbard at gmail.com
Sun Oct 21 22:10:06 PDT 2007
Author: void
Date: Mon Oct 22 00:10:05 2007
New Revision: 43216
URL: http://llvm.org/viewvc/llvm-project?rev=43216&view=rev
Log:
Put correct link in example
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=43216&r1=43215&r2=43216&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Mon Oct 22 00:10:05 2007
@@ -2788,9 +2788,8 @@
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>
More information about the llvm-commits
mailing list