<html>
<head>
<base href="https://bugs.freedesktop.org/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Can't build with LLVM/clang 3.7.0 - SSSE3 instruction set not enabled"
href="https://bugs.freedesktop.org/show_bug.cgi?id=93454#c1">Comment # 1</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Can't build with LLVM/clang 3.7.0 - SSSE3 instruction set not enabled"
href="https://bugs.freedesktop.org/show_bug.cgi?id=93454">bug 93454</a>
from <span class="vcard"><a class="email" href="mailto:imirkin@alum.mit.edu" title="Ilia Mirkin <imirkin@alum.mit.edu>"> <span class="fn">Ilia Mirkin</span></a>
</span></b>
<pre>Hmmm... this comes from
#if defined(PIPE_ARCH_SSSE3)
#include <tmmintrin.h>
Which in turn comes from, hilariously,
#if defined(PIPE_CC_GCC) && (__GNUC__ * 100 + __GNUC_MINOR__) < 409 &&
!defined(__SSSE3__)
/* #warning SSE3 support requires -msse3 compiler options before GCC 4.9 */
#else
#define PIPE_ARCH_SSSE3
#endif
I'm guessing that was meant to be
#if defined(PIPE_CC_GCC) && (__GNUC__ * 100 + __GNUC_MINOR__) < 409 ||
!defined(__SSSE3__)</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the QA Contact for the bug.</li>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>