diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-08-21 03:58:45 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-08-21 03:58:45 +0000 |
commit | f1fbda380b200923ea6275c61cd22cc99d4d75c0 (patch) | |
tree | 15722b8c3e9293e9d7d550320627d818f583ad2f /lib/CodeGen/CodeGenFunction.h | |
parent | 3491b3d38b9569ab19f417ed2c3c8a86885345a2 (diff) |
IRgen/CGValue: Give MakeAddrLValue() an alignment argument, and eliminate old form of MakeAddr().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111723 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 8c5c380c22..5030553358 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -976,7 +976,7 @@ public: } LValue MakeAddrLValue(llvm::Value *V, QualType T) { - return LValue::MakeAddr(V, T, getContext()); + return LValue::MakeAddr(V, T, 0, getContext()); } /// CreateTempAlloca - This creates a alloca and inserts it into the entry |