Changeset 703 in dev


Ignore:
Timestamp:
Jul 21, 2008, 2:29:18 PM (16 years ago)
Author:
dai_9181
Message:

[686][689]を64bit版にマージ。

Location:
trunk/ab5.0/abdev/compiler_x64
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x64/Compile_Func.cpp

    r687 r703  
    216216
    217217
    218     if( userProc.GetMethod().IsDynamic() )
     218    if( userProc.HasParentClass() && userProc.GetMethod().IsDynamic() )
    219219    {
    220220        //mov rdx,rax
     
    258258
    259259    std::vector<const UserProc *> subs;
    260     if( userProc.GetMethod().IsDynamic() )
     260    if( userProc.HasParentClass() && userProc.GetMethod().IsDynamic() )
    261261    {
    262262        dgClass.GetStaticMethods().Enum( "_CreateDynamicDelegate", subs );
  • trunk/ab5.0/abdev/compiler_x64/stdafx.h

    r650 r703  
    5858#include <DataTableGenerator.h>
    5959#include <BreakPoint.h>
     60
     61#define lstrlenA strlen
     62#define lstrcmpA strcmp
     63#define lstrcpyA strcpy
     64#define lstrcmpiA _stricmp
Note: See TracChangeset for help on using the changeset viewer.