Changeset 509 in dev for trunk/ab5.0/abdev/compiler_x86
- Timestamp:
- Apr 29, 2008, 12:27:10 PM (17 years ago)
- Location:
- trunk/ab5.0/abdev/compiler_x86
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x86/Compile_CallProc.cpp
r465 r509 5 5 #include "../BasicCompiler_Common/common.h" 6 6 #include "Opcode.h" 7 8 using namespace ActiveBasic::Compiler; 7 9 8 10 void Call_DebugSys_SaveContext(){ … … 435 437 { 436 438 extern BOOL bDebugSupportProc; 437 if( compiler.IsDebug() && bDebugSupportProc==0 && pDllProc->IsEqualSymbol( "DebugBreak") )439 if( compiler.IsDebug() && bDebugSupportProc==0 && pDllProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( "DebugBreak" ) ) ) 438 440 { 439 441 Call_DebugSys_SaveContext(); -
trunk/ab5.0/abdev/compiler_x86/compiler_x86.vcproj
r507 r509 1344 1344 </File> 1345 1345 <File 1346 RelativePath="..\BasicCompiler_Common\src\Symbol.cpp"1347 >1348 </File>1349 <File1350 1346 RelativePath="..\BasicCompiler_Common\src\Type.cpp" 1351 1347 > … … 1541 1537 </File> 1542 1538 <File 1543 RelativePath="..\BasicCompiler_Common\include\Symbol.h"1544 >1545 </File>1546 <File1547 1539 RelativePath="..\BasicCompiler_Common\include\Type.h" 1548 1540 > -
trunk/ab5.0/abdev/compiler_x86/stdafx.h
r508 r509 34 34 #include <abdev/ab_common/include/Namespace.h> 35 35 #include <abdev/ab_common/include/NamespaceSupporter.h> 36 #include <abdev/ab_common/include/Symbol.h> 36 37 37 38 using namespace ActiveBasic::Common::Lexical; … … 42 43 #include <Hashmap.h> 43 44 #include <Configuration.h> 44 #include <Symbol.h>45 45 #include <LexicalAnalyzer.h> 46 46 #include <Program.h>
Note:
See TracChangeset
for help on using the changeset viewer.