Put correct link in example
authorBill Wendling <isanbard@gmail.com>
Mon, 22 Oct 2007 05:10:05 +0000 (05:10 +0000)
committerBill 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

index 51aae8840551b3e31ec103214be23185af849785..f6895a09ee7e179b2f70456f13b2f78c631cf393 100644 (file)
@@ -2788,9 +2788,8 @@ this <tt>store</tt> with other volatile <tt>load</tt> and <tt><a
 at the location specified by the '<tt>&lt;pointer&gt;</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>