Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Unified Diff: src/ppc/code-stubs-ppc.cc

Issue 2759433002: [cctest] Fix invalid assumption in test-unboxed-doubles (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/s390/code-stubs-s390.cc » ('j') | test/cctest/test-unboxed-doubles.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ppc/code-stubs-ppc.cc
diff --git a/src/ppc/code-stubs-ppc.cc b/src/ppc/code-stubs-ppc.cc
index 547aa0f9285c5a22cd693d5ffafac42a4d185e3a..ba0112ddef57bd65e0ba452ca559d80f50eac321 100644
--- a/src/ppc/code-stubs-ppc.cc
+++ b/src/ppc/code-stubs-ppc.cc
@@ -1245,9 +1245,9 @@ void RegExpExecStub::Generate(MacroAssembler* masm) {
ExternalReference::address_of_regexp_stack_memory_size(isolate());
__ mov(r11, Operand(address_of_regexp_stack_memory_address));
__ LoadP(r11, MemOperand(r11, 0));
- __ mov(r12, Operand(address_of_regexp_stack_memory_size));
- __ LoadP(r12, MemOperand(r12, 0));
- __ add(r9, r11, r12);
+ __ mov(r13, Operand(address_of_regexp_stack_memory_size));
+ __ LoadP(r13, MemOperand(r13, 0));
+ __ add(r9, r11, r13);
// Argument 6 (r8): Set the number of capture registers to zero to force
// global egexps to behave as non-global. This does not affect non-global
« no previous file with comments | « no previous file | src/s390/code-stubs-s390.cc » ('j') | test/cctest/test-unboxed-doubles.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698