From 0c547bca505a57cf9428a7ff6d8501a11f4ea827 Mon Sep 17 00:00:00 2001 From: "senorblanco@chromium.org" Date: Fri, 20 Nov 2009 18:55:44 +0000 Subject: [PATCH] Build fix for WIN64 (unreviewed). git-svn-id: http://skia.googlecode.com/svn/trunk@439 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/opts/opts_check_SSE2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opts/opts_check_SSE2.cpp b/src/opts/opts_check_SSE2.cpp index 4757ed859e..bd4807a9e4 100644 --- a/src/opts/opts_check_SSE2.cpp +++ b/src/opts/opts_check_SSE2.cpp @@ -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;