<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:llvm@meinersbur.de" title="Michael Kruse <llvm@meinersbur.de>"> <span class="fn">Michael Kruse</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED INVALID - Fail to import jscop file"
   href="https://llvm.org/bugs/show_bug.cgi?id=27364">bug 27364</a>
        <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Status</td>
           <td>NEW
           </td>
           <td>RESOLVED
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Resolution</td>
           <td>---
           </td>
           <td>INVALID
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED INVALID - Fail to import jscop file"
   href="https://llvm.org/bugs/show_bug.cgi?id=27364#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED INVALID - Fail to import jscop file"
   href="https://llvm.org/bugs/show_bug.cgi?id=27364">bug 27364</a>
              from <span class="vcard"><a class="email" href="mailto:llvm@meinersbur.de" title="Michael Kruse <llvm@meinersbur.de>"> <span class="fn">Michael Kruse</span></a>
</span></b>
        <pre>Thank you for preparing a an archive that contains everything required for
reproducing. This helps a lot.

The modified schedule contains an impossible condition:

o2 = ( i0 + 7 - i0 ) / 64

or simplified:

o2 = 7 / 64

This is a rational value, but o2 can only be integral. Therefore the comparison
is always false. What you probably want is:

o2 = floor(( i0 + 7 - i0 ) / 64)

or just

o2 = 0

Admittedly, Polly could warn about it and ignore the wrong schedule instead of
crashing. However, the load schedule feature is mainly meant for testing so we
don't have extensive validity checks in place.</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>