[llvm-commits] [llvm] r125192 - /llvm/trunk/docs/LangRef.html
Chris Lattner
sabre at nondot.org
Wed Feb 9 08:44:44 PST 2011
Author: lattner
Date: Wed Feb 9 10:44:44 2011
New Revision: 125192
URL: http://llvm.org/viewvc/llvm-project?rev=125192&view=rev
Log:
fix typo
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=125192&r1=125191&r2=125192&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Wed Feb 9 10:44:44 2011
@@ -3709,7 +3709,7 @@
<p>If the <tt>nuw</tt> keyword is present, then the shift produces a
<a href="#trapvalues">trap value</a> if it shifts out any non-zero bits. If
- the <tt>nsw</tt> keywrod is present, then the shift produces a
+ the <tt>nsw</tt> keyword is present, then the shift produces a
<a href="#trapvalues">trap value</a> if it shifts out any bits that disagree
with the resultant sign bit. As such, NUW/NSW have the same semantics as
they would if the shift were expressed as a mul instruction with the same
More information about the llvm-commits
mailing list