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:
9008721
)
Fix an error in the two-address example.
author
Dan Gohman
<gohman@apple.com>
Fri, 13 Jun 2008 17:55:57 +0000
(17:55 +0000)
committer
Dan Gohman
<gohman@apple.com>
Fri, 13 Jun 2008 17:55:57 +0000
(17:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52253
91177308
-0d34-0410-b5e6-
96231b3b80d8
docs/CodeGenerator.html
patch
|
blob
|
history
diff --git
a/docs/CodeGenerator.html
b/docs/CodeGenerator.html
index a283981c7c55723549e33ea934657f6aead341ff..06c6e9ae04652bafba3262c3ae7454095ed948c1 100644
(file)
--- a/
docs/CodeGenerator.html
+++ b/
docs/CodeGenerator.html
@@
-1468,12
+1468,12
@@
instance, in situations where an instruction such as <tt>%a = ADD %b
<div class="doc_code">
<pre>
%a = MOVE %b
-%a = ADD %a %
b
+%a = ADD %a %
c
</pre>
</div>
<p>Notice that, internally, the second instruction is represented as
-<tt>ADD %a[def/use] %
b
</tt>. I.e., the register operand <tt>%a</tt> is
+<tt>ADD %a[def/use] %
c
</tt>. I.e., the register operand <tt>%a</tt> is
both used and defined by the instruction.</p>
</div>