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

Last change on this file since 206 was 206, checked in by dai_9181, 17 years ago

コード全体のリファクタリングを実施

File size: 289 bytes
Line 
1#include "stdafx.h"
2
3#include <windows.h>
4#include <stdlib.h>
5
6int obp,obp_AllocSize;
7int GlobalOpBufferSize;
8char *OpBuffer;
9void ReallocNativeCodeBuffer(){
10 if(obp_AllocSize<obp+8192){
11 obp_AllocSize+=8192;
12 OpBuffer=(char *)realloc(OpBuffer,obp_AllocSize); //matea
13 }
14}
Note: See TracBrowser for help on using the repository browser.