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

Unified Diff: src/s390/macro-assembler-s390.cc

Issue 1852373002: S390: Fixed MacroAssembler::ShiftRightArithPair to use SRDA (vs. SRDL) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/s390/macro-assembler-s390.cc
diff --git a/src/s390/macro-assembler-s390.cc b/src/s390/macro-assembler-s390.cc
index c0f234d3ef28e99dc6ffd8dc72bb32b12846c782..a64da08f9354b31c6589584b527d0a4ea3478a7b 100644
--- a/src/s390/macro-assembler-s390.cc
+++ b/src/s390/macro-assembler-s390.cc
@@ -944,7 +944,7 @@ void MacroAssembler::ShiftRightArithPair(Register dst_low, Register dst_high,
uint32_t shift) {
LoadRR(r0, src_high);
LoadRR(r1, src_low);
- srdl(r0, r0, Operand(shift));
+ srda(r0, r0, Operand(shift));
LoadRR(dst_high, r0);
LoadRR(dst_low, r1);
}
« 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