diff options
| author | Bill Wendling <isanbard@gmail.com> | 2007-10-22 05:10:05 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2007-10-22 05:10:05 +0000 |
| commit | 8830ffed4c507d047d9692e08dd853c180ffded4 (patch) | |
| tree | 6c28c6320fa41d7f7c1e01ca2433abe01c6a6853 /llvm/docs/LangRef.html | |
| parent | 5e0f459da643ec5bb0bb48ddaa452e17748b1b2b (diff) | |
| download | bcm5719-llvm-8830ffed4c507d047d9692e08dd853c180ffded4.tar.gz bcm5719-llvm-8830ffed4c507d047d9692e08dd853c180ffded4.zip | |
Put correct link in example
llvm-svn: 43216
Diffstat (limited to 'llvm/docs/LangRef.html')
| -rw-r--r-- | llvm/docs/LangRef.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 51aae884055..f6895a09ee7 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/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> |

