Revision: 17227
Author: [email protected]
Date: Wed Oct 16 08:08:41 2013 UTC
Log: Fix for non-SSE2.
BUG=cctest/test-assembler-ia32/AssemblerIa32Extractps
[email protected]
Review URL: https://codereview.chromium.org/27476004
http://code.google.com/p/v8/source/detail?r=17227
Modified:
/branches/bleeding_edge/test/cctest/test-assembler-ia32.cc
=======================================
--- /branches/bleeding_edge/test/cctest/test-assembler-ia32.cc Tue Oct 15
14:04:49 2013 UTC
+++ /branches/bleeding_edge/test/cctest/test-assembler-ia32.cc Wed Oct 16
08:08:41 2013 UTC
@@ -566,7 +566,8 @@
TEST(AssemblerIa32Extractps) {
CcTest::InitializeVM();
- if (!CpuFeatures::IsSupported(SSE4_1)) return;
+ if (!CpuFeatures::IsSupported(SSE2) ||
+ !CpuFeatures::IsSupported(SSE4_1)) return;
Isolate* isolate = reinterpret_cast<Isolate*>(CcTest::isolate());
HandleScope scope(isolate);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.