comparison ir/irfunction.cpp @ 205:9d44ec83acd1 trunk

[svn r221] Update: Switched to the 2.3 LLVM svn branch, http://llvm.org/svn/llvm-project/llvm/branches/release_23 . Fixed: Implemented volatile statements. Uses the LLVM memory barrier intrinsic, closes #21 .
author lindquist
date Tue, 13 May 2008 17:58:11 +0200
parents e881c9b1c738
children e0b6040585b4
comparison
equal deleted inserted replaced
204:11fe364b9a3e 205:9d44ec83acd1
24 _arguments = NULL; 24 _arguments = NULL;
25 _argptr = NULL; 25 _argptr = NULL;
26 dwarfSubProg = NULL; 26 dwarfSubProg = NULL;
27 27
28 srcfileArg = NULL; 28 srcfileArg = NULL;
29 inVolatile = false;
29 } 30 }
30 31
31 IrFunction::~IrFunction() 32 IrFunction::~IrFunction()
32 { 33 {
33 } 34 }