<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Missed peephole: xor-inc-add to xor-sub"
   href="https://bugs.llvm.org/show_bug.cgi?id=45647">45647</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Missed peephole: xor-inc-add to xor-sub
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>libraries
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Linux
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>enhancement
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>Scalar Optimizations
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>lebedev.ri@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>define i8 @square(i8 %x, i8 %y) {
    %t0 = xor i8 %x, -43
    %t1 = add i8 %t0, 1
    %r = add i8 %t1, %y
    ret i8 %r
}

<a href="https://godbolt.org/z/EpjvTY">https://godbolt.org/z/EpjvTY</a>

----------------------------------------
Name: zz
  %t0 = xor i8 %x, -43
  %t1 = add i8 %t0, 1
  %r = add i8 %t1, %y
  ret i8 %r
=>
  %n0 = xor i8 %x, 42
  %r = sub i8 %y, %n0
  ret i8 %r
  %t0 = xor i8 %x, -43
  %t1 = add i8 %t0, 1

Done: 1
Transformation seems to be correct!</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>