Changeset 597 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/NativeCode.cpp
- Timestamp:
- May 10, 2008, 7:42:22 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/NativeCode.cpp
r551 r597 1 1 #include "stdafx.h" 2 3 #include <Compiler.h>4 2 5 3 #define BREAK_EIP(checkEip) (obp+0x00401000>=checkEip) … … 108 106 } 109 107 110 void NativeCode::NextSourceLine( int currentSourceIndex )108 void NativeCode::NextSourceLine( int currentSourceIndex, int nowLine ) 111 109 { 112 110 if( sourceLines.size() ) … … 114 112 if( sourceLines.back().GetNativeCodePos() == GetSize() ) 115 113 { 116 sourceLines.back().SetSourceCodePos( cp);114 sourceLines.back().SetSourceCodePos( nowLine ); 117 115 return; 118 116 } … … 135 133 GetSize(), 136 134 currentSourceIndex, 137 cp,135 nowLine, 138 136 sourceLineType 139 137 )
Note:
See TracChangeset
for help on using the changeset viewer.