better ifdef for x86 to include SSe header that enables the member function definitions

This commit is contained in:
Riccardo Mottola 2017-12-16 18:58:55 +01:00
parent dd8d39889c
commit 46c4e5cb41
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@
#include "nscore.h"
#include "mozilla/Assertions.h"
#if MOZILLA_MAY_SUPPORT_SSE2
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
#include "mozilla/SSE.h"
#endif