From 8e11bf8508613f6eb2b72d46f65ff28dc69f9204 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 2 Feb 2007 13:57:07 +0000 Subject: [PATCH] Put the Shift instructions in the right section. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33782 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 677e6256619..a159d28b2fd 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -85,13 +85,13 @@
  • 'urem' Instruction
  • 'srem' Instruction
  • 'frem' Instruction
  • -
  • 'shl' Instruction
  • -
  • 'lshr' Instruction
  • -
  • 'ashr' Instruction
  • Bitwise Binary Operations
      +
    1. 'shl' Instruction
    2. +
    3. 'lshr' Instruction
    4. +
    5. 'ashr' Instruction
    6. 'and' Instruction
    7. 'or' Instruction
    8. 'xor' Instruction
    9. @@ -1952,6 +1952,18 @@ identical types.

      + + +
      +

      Bitwise binary operators are used to do various forms of +bit-twiddling in a program. They are generally very efficient +instructions and can commonly be strength reduced from other +instructions. They require two operands, execute an operation on them, +and produce a single value. The resulting value of the bitwise binary +operators is always the same type as its first operand.

      +
      + @@ -2003,7 +2015,7 @@ shift.

      - +
      @@ -2034,17 +2046,6 @@ of var1.

      - - -
      -

      Bitwise binary operators are used to do various forms of -bit-twiddling in a program. They are generally very efficient -instructions and can commonly be strength reduced from other -instructions. They require two operands, execute an operation on them, -and produce a single value. The resulting value of the bitwise binary -operators is always the same type as its first operand.

      -