<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/121703>121703</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            [InstCombine] Commuted pattern is not handled
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            llvm:instcombine,
            missed-optimization
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
            dtcxzyw
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          dtcxzyw
      </td>
    </tr>
</table>

<pre>
    https://godbolt.org/z/Ez3hEb8vs
```
define i32 @poo2(i32 %a, i32 %b, i32 %c, i32 %d) {
  %t0 = icmp slt i32 %a, %b
 %iftmp.0.0 = select i1 %t0, i32 -1, i32 0
  %t1 = and i32 %iftmp.0.0, %c
 %iftmp = select i1 %t0, i32 0, i32 -1
  %t2 = and i32 %iftmp, %d
  %t3 = or i32 %t1, %t2
  ret i32 %t3
}

define i32 @poo3(i32 %a, i32 %b, i32 %c, i32 %d) {
  %t0 = icmp sge i32 %a, %b
  %iftmp.0.0 = select i1 %t0, i32 0, i32 -1
  %t1 = and i32 %iftmp.0.0, %c
  %iftmp = select i1 %t0, i32 0, i32 -1
  %t2 = and i32 %iftmp, %d
  %t3 = or i32 %t1, %t2
  ret i32 %t3
}
```
```
define i32 @poo2(i32 %a, i32 %b, i32 %c, i32 %d) {
 %t0.not = icmp slt i32 %a, %b
  %t3 = select i1 %t0.not, i32 %c, i32 %d
 ret i32 %t3
}

define i32 @poo3(i32 %a, i32 %b, i32 %c, i32 %d) {
 %t0.not = icmp slt i32 %a, %b
  %1 = or i32 %c, %d
  %t3 = select i1 %t0.not, i32 %1, i32 0
  ret i32 %t3
}
```

</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJzMVN2OmzwQfZrhxgqyx5CECy7YZJG-xzC2N_EngxGebLt5-gpCUhRlfyq1VaUoHqMzZzhnhlExukNnbQn5EyAa0t_Pb98AEfJ9ok50DEM5P0yaYN7KI1EfQVaANWB9CKYJntIwHADrM2D9fJbH52b7GoFXsObzj1fGvrjOMieRQcb7EBBwO90wV4A7NsfNItaL2AAWDDZPwCs23okzkHvmdNuz6IktqSYaXo2ne6G2T3l6QUfrrSbmxIXhSr8S14jf6MWUoDpzZb4xzRX0ssJH7MsyV3Z8yD4zmxtMTrAwXFEkZgjhhBnsTTjJ0fDNfvx_4Lb8jW4f7EO3v2z3I0O-Zvc_6vdizP_UyE8K0y7Q51O_UHLn0Jj_bi1e_Z1x-kUl4q4l-p2mfSz17gP_vI-JKaUpZKESW4qNXPMiK2SRHMtNrrcyFyrTKJDnVqJs1iLjmBv9klmeuBI55lzwXKxlLouUY7ZRWbGVVvBM2hwyblvlfOr9aztuzsTFeLKlQLHhMvGqsT7O-3iEgKxcF0mHtnGdHVcz7gCxdTFaswo9udadFbnQzWt7KMe0VXM6RMi4d5Hiz1rkyE_b_r8u0m7mzPdsF9r2RNawXhHZoWMusrFJR9UZb01yGvz97nd0PDWpDi1gPb3o5Vj1Q_jfagKsJ2ERsJ61vZb4IwAA__995LAL">