2009-04-30 01:03 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/compiler/hbdbginf.c
    ! generate debugger break point line info also for very large blocks
      (HB_P_PUSHBLOCKLARGE)
This commit is contained in:
Przemyslaw Czerpak
2009-04-29 22:55:54 +00:00
parent 74dc2abcef
commit 1b2653cfe9
2 changed files with 9 additions and 0 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-04-30 01:03 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/compiler/hbdbginf.c
! generate debugger break point line info also for very large blocks
(HB_P_PUSHBLOCKLARGE)
2009-04-29 20:26 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Refixed -map option for *nix non-darwin systems. Well,

View File

@@ -85,6 +85,10 @@ PHB_DEBUGINFO hb_compGetDebugInfo( HB_COMP_DECL )
* if it's not necessary then simply remove the
* code below. [druzus]
*/
case HB_P_PUSHBLOCKLARGE:
ulSkip = 8 + HB_PCODE_MKUSHORT( &pFunc->pCode[ ulPos + 6 ] ) * 2;
break;
case HB_P_PUSHBLOCK:
ulSkip = 7 + HB_PCODE_MKUSHORT( &pFunc->pCode[ ulPos + 5 ] ) * 2;
break;