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

Unified Diff: src/s390/disasm-s390.cc

Issue 2160573003: S390: Fix convertion from int32 to float32 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: more fix Created 4 years, 5 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 | « src/s390/assembler-s390.cc ('k') | src/s390/macro-assembler-s390.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/s390/disasm-s390.cc
diff --git a/src/s390/disasm-s390.cc b/src/s390/disasm-s390.cc
index d9cf2d33cf75cd0bb591fa54108144f8e8a2887e..c12ea6c4a11ffc2f9c590e262fb98e2d18c03502 100644
--- a/src/s390/disasm-s390.cc
+++ b/src/s390/disasm-s390.cc
@@ -913,6 +913,9 @@ bool Decoder::DecodeFourByte(Instruction* instr) {
case CEFBR:
Format(instr, "cefbr\t'f5,'m2,'r6");
break;
+ case CELFBR:
+ Format(instr, "celfbr\t'f5,'m2,'r6");
+ break;
case CGEBR:
Format(instr, "cgebr\t'r5,'m2,'f6");
break;
@@ -937,6 +940,12 @@ bool Decoder::DecodeFourByte(Instruction* instr) {
case CLFDBR:
Format(instr, "clfdbr\t'r5,'m2,'f6");
break;
+ case CLFEBR:
+ Format(instr, "clfebr\t'r5,'m2,'f6");
+ break;
+ case CLGEBR:
+ Format(instr, "clgebr\t'r5,'m2,'f6");
+ break;
case CLGDBR:
Format(instr, "clgdbr\t'r5,'m2,'f6");
break;
« no previous file with comments | « src/s390/assembler-s390.cc ('k') | src/s390/macro-assembler-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698