Changeset 198 in dev for trunk/abdev/BasicCompiler64/Compile_Statement.cpp
- Timestamp:
- Jun 27, 2007, 2:41:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Statement.cpp
r183 r198 136 136 if(resultType.IsDouble()){ 137 137 double dbl=0; 138 offset= Compiler::GetNativeCode().GetDataTable().Add( dbl );138 offset=compiler.GetNativeCode().GetDataTable().Add( dbl ); 139 139 140 140 //comisd xmm0,qword ptr[data table offset] … … 150 150 else if(resultType.IsSingle()){ 151 151 float flt=0; 152 offset= Compiler::GetNativeCode().GetDataTable().Add( flt );152 offset=compiler.GetNativeCode().GetDataTable().Add( flt ); 153 153 154 154 //comiss xmm0,dword ptr[data table offset]
Note:
See TracChangeset
for help on using the changeset viewer.