From 5a15814098702ea301e2f7ef045b12126c808eaf Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 1 Apr 2008 18:47:32 +0000 Subject: [PATCH] add a dropped hunk from Jon Sargeant's patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49045 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 1c744d2a6fe..4838c7a937c 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2055,11 +2055,10 @@ no-return function cannot be reached, and other facts.

Binary Operations

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 vector data type. -The result value of a binary operator is not -necessarily the same type as its operands.

+The result value has the same type as its operands.

There are several different binary operators:

-- 2.34.1