aboutsummaryrefslogtreecommitdiff
path: root/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-26 16:22:13 +0000
committerChris Lattner <sabre@nondot.org>2007-08-26 16:22:13 +0000
commit190dbe203c2e892ac40f1786035c6c9be3f44a4c (patch)
tree206e062a38828932c9970b1aa853e32b15e09a37 /CodeGen/CodeGenFunction.h
parent26b8ff45bab784183018f79ec95327aac4e7e8b0 (diff)
be slightly more volatile correct
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41444 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CodeGen/CodeGenFunction.h')
-rw-r--r--CodeGen/CodeGenFunction.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/CodeGen/CodeGenFunction.h b/CodeGen/CodeGenFunction.h
index 29b193890b..ae81f0c014 100644
--- a/CodeGen/CodeGenFunction.h
+++ b/CodeGen/CodeGenFunction.h
@@ -374,7 +374,8 @@ public:
/// EmitComplexExprIntoAddr - Emit the computation of the specified expression
/// of complex type, storing into the specified Value*.
- void EmitComplexExprIntoAddr(const Expr *E, llvm::Value *DestAddr);
+ void EmitComplexExprIntoAddr(const Expr *E, llvm::Value *DestAddr,
+ bool DestIsVolatile);
};
} // end namespace CodeGen
} // end namespace clang