[llvm-commits] [llvm] r54360 - /llvm/trunk/docs/LangRef.html
Chris Lattner
sabre at nondot.org
Tue Aug 5 11:21:24 PDT 2008
Author: lattner
Date: Tue Aug 5 13:21:08 2008
New Revision: 54360
URL: http://llvm.org/viewvc/llvm-project?rev=54360&view=rev
Log:
Capitalize LLVM, suggested by Walt Pawley
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=54360&r1=54359&r2=54360&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Tue Aug 5 13:21:08 2008
@@ -849,7 +849,7 @@
<dd>This indicates that the pointer parameter should really be passed by
value to the function. The attribute implies that a hidden copy of the
pointee is made between the caller and the callee, so the callee is unable
- to modify the value in the callee. This attribute is only valid on llvm
+ to modify the value in the callee. This attribute is only valid on LLVM
pointer arguments. It is generally used to pass structs and arrays by
value, but is also valid on scalars (even though this is silly).</dd>
@@ -997,7 +997,7 @@
<li><tt>v128:128:128</tt> - 128-bit vector is 128-bit aligned</li>
<li><tt>a0:0:1</tt> - aggregates are 8-bit aligned</li>
</ul>
-<p>When llvm is determining the alignment for a given type, it uses the
+<p>When LLVM is determining the alignment for a given type, it uses the
following rules:
<ol>
<li>If the type sought is an exact match for one of the specifications, that
More information about the llvm-commits
mailing list