diff ir/irfunction.h @ 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
line wrap: on
line diff
--- a/ir/irfunction.h	Tue May 13 16:16:50 2008 +0200
+++ b/ir/irfunction.h	Tue May 13 17:58:11 2008 +0200
@@ -24,6 +24,8 @@
 
     llvm::AllocaInst* srcfileArg;
 
+    bool inVolatile;
+
     IrFunction(FuncDeclaration* fd);
     virtual ~IrFunction();
 };