Changeset 75 in dev for BasicCompiler_Common/Resource.cpp


Ignore:
Timestamp:
Mar 20, 2007, 4:36:16 AM (17 years ago)
Author:
dai_9181
Message:

TYPEINFO→Typeへのリファクタリングを実施。64bitはほぼ完了。32bitが全般的に未完成。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Resource.cpp

    r4 r75  
    5050
    5151        _int64 i64data;
    52         int type;
    53         type=StaticCalculation(true, temporary,0,&i64data,0);
    54         if(IsRealNumberType(type)){
     52        Type resultType;
     53        if( !StaticCalculation(true, temporary,0,&i64data,resultType) ){
     54            return;
     55        }
     56        if(resultType.IsReal()){
    5557            SetError(9,temporary,0);
    5658            return;
Note: See TracChangeset for help on using the changeset viewer.