source: dev/trunk/abdev/BasicCompiler_Common/src/CodeGenerator.cpp@ 184

Last change on this file since 184 was 184, checked in by dai_9181, 17 years ago
File size: 266 bytes
Line 
1#include <windows.h>
2#include <stdlib.h>
3
4int obp,obp_AllocSize;
5int GlobalOpBufferSize;
6char *OpBuffer;
7void ReallocNativeCodeBuffer(){
8 if(obp_AllocSize<obp+8192){
9 obp_AllocSize+=8192;
10 OpBuffer=(char *)realloc(OpBuffer,obp_AllocSize); //matea
11 }
12}
Note: See TracBrowser for help on using the repository browser.