arch-power: Updated Store instructions
authorkajoljain379 <kajoljain797@gmail.com>
Tue, 19 Mar 2019 08:38:24 +0000 (14:08 +0530)
committerKajol Jain <kajoljain797@gmail.com>
Wed, 12 Jun 2019 07:08:38 +0000 (12:38 +0530)
Change-Id: I3eb0f5adbcce13cf586755fa62c7ca1d7aa80089
Signed-off-by: kajoljain379 <kajoljain797@gmail.com>
src/arch/power/isa/decoder.isa

index 5419755642dc2354252fd3586e9ba1d203a8708d..92e1f7712766d8f3a2355e81afa165886673a082 100644 (file)
@@ -216,13 +216,13 @@ decode PO default Unknown::unknown() {
     format StoreDispOp {
         38: stb({{ Mem_ub = Rs_ub; }});
         44: sth({{ Mem_uh = Rs_uh; }});
-        36: stw({{ Mem = Rs_uw; }});
+        36: stw({{ Mem_uw = Rs_uw; }});
     }
 
     format StoreDispUpdateOp {
         39: stbu({{ Mem_ub = Rs_ub; }});
         45: sthu({{ Mem_uh = Rs_uh; }});
-        37: stwu({{ Mem = Rs_uw; }});
+        37: stwu({{ Mem_uw = Rs_uw; }});
     }
 
     format IntImmArithCheckRaOp {