[llvm-commits] [llvm] r49045 - /llvm/trunk/docs/LangRef.html
Chris Lattner
sabre at nondot.org
Tue Apr 1 11:47:32 PDT 2008
Author: lattner
Date: Tue Apr 1 13:47:32 2008
New Revision: 49045
URL: http://llvm.org/viewvc/llvm-project?rev=49045&view=rev
Log:
add a dropped hunk from Jon Sargeant's patch.
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=49045&r1=49044&r2=49045&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Tue Apr 1 13:47:32 2008
@@ -2055,11 +2055,10 @@
<div class="doc_subsection"> <a name="binaryops">Binary Operations</a> </div>
<div class="doc_text">
<p>Binary operators are used to do most of the computation in a
-program. They require two operands, execute an operation on them, and
+program. They require two operands of the same type, execute an operation on them, and
produce a single value. The operands might represent
multiple data, as is the case with the <a href="#t_vector">vector</a> data type.
-The result value of a binary operator is not
-necessarily the same type as its operands.</p>
+The result value has the same type as its operands.</p>
<p>There are several different binary operators:</p>
</div>
<!-- _______________________________________________________________________ -->
More information about the llvm-commits
mailing list