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

git-svn-id: trunk@11774 -
This commit is contained in:
tom_at_work 2008-09-13 20:37:43 +00:00
parent f9b4d58e98
commit 3a4940e9c2

View File

@ -133,7 +133,7 @@ unit cgppc;
const
opcg_strings : array[TOpCg] of string[6] = (
'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
result := opcg_strings[op];