<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:echristo@gmail.com" title="Eric Christopher <echristo@gmail.com>"> <span class="fn">Eric Christopher</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - clang crashes on i386 when doing operations on uint128_t"
   href="https://llvm.org/bugs/show_bug.cgi?id=15834">bug 15834</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>FIXED
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - clang crashes on i386 when doing operations on uint128_t"
   href="https://llvm.org/bugs/show_bug.cgi?id=15834#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - clang crashes on i386 when doing operations on uint128_t"
   href="https://llvm.org/bugs/show_bug.cgi?id=15834">bug 15834</a>
              from <span class="vcard"><a class="email" href="mailto:echristo@gmail.com" title="Eric Christopher <echristo@gmail.com>"> <span class="fn">Eric Christopher</span></a>
</span></b>
        <pre>Appears fixed:

echristo-macbookpro2:~/tmp> cat > foo.c
#include <stdint.h>
typedef unsigned uint128_t __attribute__((mode(TI)));
int main() {
  uint64_t a = ((uint64_t)2000000000) * 1000000000;
  uint64_t b = ((uint64_t)1234567890) << 24;
  uint128_t c = ((uint128_t)a) * b;
  return 0;
}
echristo-macbookpro2:~/tmp> clang foo.c</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>