[llvm-commits] [llvm] r160762 - in /llvm/trunk/docs: LangRef.html Passes.html
Sylvestre Ledru
sylvestre at debian.org
Wed Jul 25 15:01:32 PDT 2012
Author: sylvestre
Date: Wed Jul 25 17:01:31 2012
New Revision: 160762
URL: http://llvm.org/viewvc/llvm-project?rev=160762&view=rev
Log:
Fix two typos in the doc
Modified:
llvm/trunk/docs/LangRef.html
llvm/trunk/docs/Passes.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=160762&r1=160761&r2=160762&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Wed Jul 25 17:01:31 2012
@@ -2780,7 +2780,7 @@
make it fit in <tt>TYPE</tt>.</dd>
<dt><b><tt>inttoptr (CST to TYPE)</tt></b></dt>
- <dd>Convert a integer constant to a pointer constant. TYPE must be a pointer
+ <dd>Convert an integer constant to a pointer constant. TYPE must be a pointer
type. CST must be of integer type. The CST value is zero extended,
truncated, or unchanged to make it fit in a pointer size. This one is
<i>really</i> dangerous!</dd>
Modified: llvm/trunk/docs/Passes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Passes.html?rev=160762&r1=160761&r2=160762&view=diff
==============================================================================
--- llvm/trunk/docs/Passes.html (original)
+++ llvm/trunk/docs/Passes.html Wed Jul 25 17:01:31 2012
@@ -1970,7 +1970,7 @@
<li>Verify that a function's argument list agrees with its declared
type.</li>
<li>It is illegal to specify a name for a void value.</li>
- <li>It is illegal to have a internal global value with no initializer.</li>
+ <li>It is illegal to have an internal global value with no initializer.</li>
<li>It is illegal to have a ret instruction that returns a value that does
not agree with the function return value type.</li>
<li>Function call argument types match the function prototype.</li>
More information about the llvm-commits
mailing list