[svn r205] moved some local static variables used for memset and memcpy intrinsics to IrState

This commit is contained in:
Christian Kamm
2008-05-10 19:00:11 +02:00
parent 5af7719265
commit 8d81154a97
3 changed files with 22 additions and 16 deletions

View File

@@ -53,6 +53,10 @@ IRState::IRState()
emitMain = false;
mainFunc = 0;
ir.state = this;
llvm_DeclareMemSet32 = NULL;
llvm_DeclareMemSet64 = NULL;
llvm_DeclareMemCpy32 = NULL;
llvm_DeclareMemCpy64 = NULL;
}
IrFunction* IRState::func()