Ignore:
Timestamp:
Nov 5, 2007, 3:26:20 AM (16 years ago)
Author:
dai_9181
Message:

例外処理機構実装中...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/Debug.cpp

    r313 r357  
    630630
    631631                //"スレッド(&H%X)でアクセス違反がありました(EIP=&H%08X)。\r\n"
    632                 sprintf(temporary,STRING_DEBUG_THREAD_ACCESSVIOLATION,de.dwThreadId,(ULONG_PTR)de.u.Exception.ExceptionRecord.ExceptionAddress);
     632                sprintf(temporary,
     633                    STRING_DEBUG_THREAD_ACCESSVIOLATION,
     634                    de.dwThreadId,
     635                    (ULONG_PTR)de.u.Exception.ExceptionRecord.ExceptionAddress,
     636#ifdef _AMD64_
     637                    (ULONG_PTR)Context.Rsp
     638#else
     639                    (ULONG_PTR)Context.Esp
     640#endif
     641                    );
    633642                DebugMessage(temporary);
    634643
Note: See TracChangeset for help on using the changeset viewer.