Build fix for WIN64 (unreviewed).
authorsenorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 20 Nov 2009 18:55:44 +0000 (18:55 +0000)
committersenorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 20 Nov 2009 18:55:44 +0000 (18:55 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@439 2bbb7eff-a529-9590-31e7-b0007b416f81

src/opts/opts_check_SSE2.cpp

index 4757ed8..bd4807a 100644 (file)
@@ -24,7 +24,7 @@
    instruction on Pentium3 on the code below).  Only files named *_SSE2.cpp
    in this directory should be compiled with -msse2. */
 
-#ifdef __x86_64__
+#if defined(__x86_64__) || defined(_WIN64)
 /* All x86_64 machines have SSE2, so don't even bother checking. */
 static inline bool hasSSE2() {
     return true;