Revision: 24461
Author:   [email protected]
Date:     Wed Oct  8 10:44:45 2014 UTC
Log:      [turbofan] Fix typo in IA-32 code generator.

TEST=benchmarks/octane/zlib
[email protected]

Review URL: https://codereview.chromium.org/633373002
https://code.google.com/p/v8/source/detail?r=24461

Modified:
 /branches/bleeding_edge/src/compiler/ia32/code-generator-ia32.cc

=======================================
--- /branches/bleeding_edge/src/compiler/ia32/code-generator-ia32.cc Thu Oct 2 09:04:04 2014 UTC +++ /branches/bleeding_edge/src/compiler/ia32/code-generator-ia32.cc Wed Oct 8 10:44:45 2014 UTC
@@ -990,7 +990,7 @@
     __ movaps(xmm0, src);
     __ movaps(src, dst);
     __ movaps(dst, xmm0);
-  } else if (source->IsDoubleRegister() && source->IsDoubleStackSlot()) {
+ } else if (source->IsDoubleRegister() && destination->IsDoubleStackSlot()) {
     // XMM register-memory swap.  We rely on having xmm0
     // available as a fixed scratch register.
     XMMRegister reg = g.ToDoubleRegister(source);

--
--
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/d/optout.

Reply via email to