Browse Source

* fixed compilation with -dEXTDEBUG after adding ROL/ROR internal opcodes

git-svn-id: trunk@11774 -
tom_at_work 17 years ago
parent
commit
3a4940e9c2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/ppcgen/cgppc.pas

+ 1 - 1
compiler/ppcgen/cgppc.pas

@@ -133,7 +133,7 @@ unit cgppc;
        const
        const
          opcg_strings : array[TOpCg] of string[6] = (
          opcg_strings : array[TOpCg] of string[6] = (
            'None', 'Move', 'Add', 'And', 'Div', 'IDiv', 'IMul', 'Mul',
            'None', 'Move', 'Add', 'And', 'Div', 'IDiv', 'IMul', 'Mul',
-           'Neg', 'Not', 'Or', 'Sar', 'Shl', 'Shr', 'Sub', 'Xor'
+           'Neg', 'Not', 'Or', 'Sar', 'Shl', 'Shr', 'Sub', 'Xor', 'Rol', 'Ror'
          );
          );
        begin
        begin
          result := opcg_strings[op];
          result := opcg_strings[op];