summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-08 15:13:16 +0000
committerChris Lattner <sabre@nondot.org>2009-09-08 15:13:16 +0000
commit6760e54c92b6ea93a1f1cf977e1856d1e37b70b0 (patch)
tree15b56de765665a403dc60a8b7ea2923164fbdbd5 /llvm
parent87be9e7c78fc9e1eba3bfff228ef1382f49f888a (diff)
downloadbcm5719-llvm-6760e54c92b6ea93a1f1cf977e1856d1e37b70b0.tar.gz
bcm5719-llvm-6760e54c92b6ea93a1f1cf977e1856d1e37b70b0.zip
fix a couple typos pointed out by edwin and duncan
llvm-svn: 81219
Diffstat (limited to 'llvm')
-rw-r--r--llvm/docs/LangRef.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html
index 596066d3270..b0bb562e7f3 100644
--- a/llvm/docs/LangRef.html
+++ b/llvm/docs/LangRef.html
@@ -2116,7 +2116,7 @@ arbitrarily change its value over its "live range". This is true because the
"variable" doesn't actually <em>have a live range</em>. Instead, the value is
logically read from arbitrary registers that happen to be around when needed,
so the value is not neccesarily consistent over time. In fact, %A and %C need
-to have the same semantics of the core LLVM "replace all uses with" concept
+to have the same semantics or the core LLVM "replace all uses with" concept
would not hold.</p>
<div class="doc_code">
@@ -2136,7 +2136,7 @@ can be constant folded to undef because the undef could be an SNaN, and fdiv is
not (currently) defined on SNaN's. However, in the second example, we can make
a more aggressive assumption: because the undef is allowed to be an arbitrary
value, we are allowed to assume that it could be zero. Since a divide by zero
-is has <em>undefined behavior</em>, we are allowed to assume that the operation
+it has <em>undefined behavior</em>, we are allowed to assume that the operation
does not execute at all. This allows us to delete the divide and all code after
it: since the undefined operation "can't happen", the optimizer can assume that
it occurs in dead code.
OpenPOWER on IntegriCloud