diff options
author | Anders Carlsson <andersca@mac.com> | 2009-05-19 18:50:41 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-05-19 18:50:41 +0000 |
commit | b4aa4664ec851573624a7a29c6c750fc1d5cc268 (patch) | |
tree | 424623e89fc0b5168bae44e654a6196aeede0ac8 /lib/CodeGen/CodeGenFunction.h | |
parent | 9f84d88a302ea38cf0695ce8cdace47178d2fff4 (diff) |
Pass the destination QualType to EmitStoreOfScalar. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72118 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 964f92123b..081e44f915 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -580,7 +580,7 @@ public: /// care to appropriately convert from the memory representation to /// the LLVM value representation. void EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr, - bool Volatile); + bool Volatile, QualType Ty); /// EmitLoadOfLValue - Given an expression that represents a value lvalue, /// this method emits the address of the lvalue, then loads the result as an |