Browse Source

+ SW postfix for sign extending a 32 bit integer

git-svn-id: trunk@29840 -
Jonas Maebe 10 years ago
parent
commit
a49d386541
1 changed files with 3 additions and 3 deletions
  1. 3 3
      compiler/aarch64/cpubase.pas

+ 3 - 3
compiler/aarch64/cpubase.pas

@@ -129,15 +129,15 @@ unit cpubase;
         { update condition flags }
         PF_S,
         { load/store sizes }
-        PF_B,PF_SB,PF_H,PF_SH,PF_SW
+        PF_B,PF_SB,PF_H,PF_SH,PF_W,PF_SW
       );
 
       TOpPostfixes = set of TOpPostfix;
 
     const
-      oppostfix2str : array[TOpPostfix] of string[2] = ('',
+      oppostfix2str: array[TOpPostfix] of string[2] = ('',
         's',
-        'b','sb','h','sh','sw');
+        'b','sb','h','sh','w','sw');
 
 {*****************************************************************************
                                 Conditions