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

Unified Diff: src/a64/simulator-a64.cc

Issue 143073003: A64: Fix register update detection for csp. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/simulator-a64.cc
diff --git a/src/a64/simulator-a64.cc b/src/a64/simulator-a64.cc
index bc4eb78efca70140123264124a763b0d1495c049..5a0dcf819b2f5e41f3b909937aedd1e0514dc3a2 100644
--- a/src/a64/simulator-a64.cc
+++ b/src/a64/simulator-a64.cc
@@ -854,7 +854,7 @@ void Simulator::PrintRegisters(bool print_all_regs) {
clr_normal);
}
// Cache the new register value so the next run can detect any changes.
- last_regs[i] = xreg(i);
+ last_regs[i] = xreg(i, Reg31IsStackPointer);
}
first_run = false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698