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 | 63ffa14c9926f5aac9221cc2e9ffc18277c29c52 (patch) | |
tree | 9dc9a362bec0f1013b82e864164ee264bcc2d756 /docs | |
parent | dbca7df0f705638a0a0b336cae87829cf07eb54d (diff) | |
download | external_llvm-63ffa14c9926f5aac9221cc2e9ffc18277c29c52.zip external_llvm-63ffa14c9926f5aac9221cc2e9ffc18277c29c52.tar.gz external_llvm-63ffa14c9926f5aac9221cc2e9ffc18277c29c52.tar.bz2 |
Put correct link in example
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43216 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 51aae88..f6895a0 100644 --- 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> |