diff options
author | tomhudson@chromium.org <tomhudson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-07 12:51:51 +0000 |
---|---|---|
committer | tomhudson@chromium.org <tomhudson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-07 12:51:51 +0000 |
commit | 7c0edc0e965fb9db8153f7bd391a384a64c10c24 (patch) | |
tree | 47b85041685c9ea72cc0637a80eca4f88aa45497 /skia | |
parent | 2c4b4c441a79d9a1051ef36a0d28deb012c91081 (diff) | |
download | chromium_src-7c0edc0e965fb9db8153f7bd391a384a64c10c24.zip chromium_src-7c0edc0e965fb9db8153f7bd391a384a64c10c24.tar.gz chromium_src-7c0edc0e965fb9db8153f7bd391a384a64c10c24.tar.bz2 |
Temporarily disable buggy SSE2 code.
Review URL: https://chromiumcodereview.appspot.com/10823186
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150335 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/convolver.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/skia/ext/convolver.h b/skia/ext/convolver.h index 9705c15..14974e5 100644 --- a/skia/ext/convolver.h +++ b/skia/ext/convolver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -15,7 +15,8 @@ #if defined(ARCH_CPU_X86_FAMILY) #if defined(__x86_64__) || defined(_M_X64) || defined(__SSE2__) || _M_IX86_FP==2 // This is where we had compiler support for SSE2 instructions. -#define SIMD_SSE2 1 +// FIXME: Known buggy, so disabling for M22. +// #define SIMD_SSE2 1 #endif #endif |