diff options
author | Mike Stump <mrs@apple.com> | 2009-03-05 01:23:13 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-05 01:23:13 +0000 |
commit | 797b6327571f9d7b1c45404a56ddcbf9b9298ae8 (patch) | |
tree | 606c641fbf57704185ed3cf437a2434de275fb1d /lib/CodeGen/CodeGenFunction.cpp | |
parent | 7833ed2a6eb10750572fb7b7dbb16741fe1b00ec (diff) |
Add codegen support for __block variables to call _Block_object_dispose as necessary.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66117 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index 0e9bf1a5bb..b8e01029f7 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -24,7 +24,7 @@ using namespace clang; using namespace CodeGen; CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) - : BlockFunction(Builder), CGM(cgm), Target(CGM.getContext().Target), + : BlockFunction(cgm, Builder), CGM(cgm), Target(CGM.getContext().Target), DebugInfo(0), SwitchInsn(0), CaseRangeBlock(0), InvokeDest(0) { LLVMIntTy = ConvertType(getContext().IntTy); LLVMPointerWidth = Target.getPointerWidth(0); |