mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 12:49:09 +02:00
* fixed compilation with -dEXTDEBUG after adding ROL/ROR internal opcodes
git-svn-id: trunk@11774 -
This commit is contained in:
parent
f9b4d58e98
commit
3a4940e9c2
@ -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];
|
||||||
|
Loading…
Reference in New Issue
Block a user