Changeset 56 in dev for BasicCompiler64/Compile_Statement.cpp
- Timestamp:
- Feb 15, 2007, 3:39:40 AM (19 years ago)
- File:
- 
      - 1 edited
 
 - 
          
  BasicCompiler64/Compile_Statement.cpp (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      BasicCompiler64/Compile_Statement.cppr52 r56 123 123 if(type==DEF_DOUBLE){ 124 124 double dbl=0; 125 offset= AddDataTable((char *)&dbl,sizeof(double));125 offset=dataTable.Add( dbl ); 126 126 127 127 //comisd xmm0,qword ptr[data table offset] … … 137 137 else if(type==DEF_SINGLE){ 138 138 float flt=0; 139 offset= AddDataTable((char *)&flt,sizeof(float));139 offset=dataTable.Add( flt ); 140 140 141 141 //comiss xmm0,dword ptr[data table offset] 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
