Ignore:
Timestamp:
Mar 23, 2008, 10:43:50 AM (16 years ago)
Author:
dai_9181
Message:

[459]を64bit版にもマージ。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler64/Compile_CallProc.cpp

    r436 r460  
    2626bool Opcode_CallProcPtr( const char *variable, const char *lpszParms,ProcPointer *pProcPointer)
    2727{
    28     extern BOOL bDebugCompile;
    2928    extern BOOL bDebugSupportProc;
    30     if(bDebugCompile&&bDebugSupportProc==0)
     29    if( compiler.IsDebug() && bDebugSupportProc == 0 )
     30    {
    3131        Call_DebugSys_SaveContext();
     32    }
    3233
    3334
     
    462463bool Opcode_CallDllProc( const char *lpszParms, DllProc *pDllProc ){
    463464
    464     extern BOOL bDebugCompile;
    465465    extern BOOL bDebugSupportProc;
    466     if(bDebugCompile&&bDebugSupportProc==0&& pDllProc->GetName() != "DebugBreak" ){
     466    if( compiler.IsDebug() && bDebugSupportProc == 0 && pDllProc->GetName() != "DebugBreak" )
     467    {
    467468        Call_DebugSys_SaveContext();
    468469    }
     
    524525void Opcode_CallDelegate( const Delegate &dg, const char *methodPtrValueStr, const char *objPtrValueStr, const char *params )
    525526{
    526     extern BOOL bDebugCompile;
    527527    extern BOOL bDebugSupportProc;
    528     if(bDebugCompile&&bDebugSupportProc==0)
     528    if( compiler.IsDebug() && bDebugSupportProc == 0 )
     529    {
    529530        Call_DebugSys_SaveContext();
     531    }
    530532
    531533
Note: See TracChangeset for help on using the changeset viewer.