<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:ossy&#64;webkit.org" title="Csaba Osztrogonác &lt;ossy&#64;webkit.org&gt;"> <span class="fn">Csaba Osztrogonác</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_UNCONFIRMED "
   title="UNCONFIRMED - &quot;Illegal instruction&quot; crash on AMD Geode CPU"
   href="https://bugs.webkit.org/show_bug.cgi?id=119190">bug 119190</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;">Attachment #266982 Flags</td>
           <td>review?
           </td>
           <td>review-
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_UNCONFIRMED "
   title="UNCONFIRMED - &quot;Illegal instruction&quot; crash on AMD Geode CPU"
   href="https://bugs.webkit.org/show_bug.cgi?id=119190#c11">Comment # 11</a>
              on <a class="bz_bug_link 
          bz_status_UNCONFIRMED "
   title="UNCONFIRMED - &quot;Illegal instruction&quot; crash on AMD Geode CPU"
   href="https://bugs.webkit.org/show_bug.cgi?id=119190">bug 119190</a>
              from <span class="vcard"><a class="email" href="mailto:ossy&#64;webkit.org" title="Csaba Osztrogonác &lt;ossy&#64;webkit.org&gt;"> <span class="fn">Csaba Osztrogonác</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=266982&amp;action=diff" name="attach_266982" title="Disable the JIT on x86 if there's no SSE2">attachment 266982</a> <a href="attachment.cgi?id=266982&amp;action=edit" title="Disable the JIT on x86 if there's no SSE2">[details]</a></span>
Disable the JIT on x86 if there's no SSE2

Let's do it in Options.cpp similar to Apple's and WinCairo's Windows port:
<a href="https://trac.webkit.org/browser/trunk/Source/JavaScriptCore/runtime/Options.cpp#L277">https://trac.webkit.org/browser/trunk/Source/JavaScriptCore/runtime/Options.cpp#L277</a>
- #if OS(WINDOWS) &amp;&amp; CPU(X86)
+ #if CPU(X86) &amp;&amp; ( OS(WINDOWS) || OS(LINUX) )

And it would be great to add a FIXME with referencing a new bug report which is responsible for fixing JIT on non-SSE2 X86.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>