diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-09-16 00:20:07 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-09-16 00:20:07 +0000 |
commit | b60e70f96363fab9412a6facdd06856418fd943a (patch) | |
tree | a6deab9e7d334ab3ca645da486a1648d9b5aff24 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 853734e55877a407009787cefa6c6537e04152a8 (diff) | |
download | bcm5719-llvm-b60e70f96363fab9412a6facdd06856418fd943a.tar.gz bcm5719-llvm-b60e70f96363fab9412a6facdd06856418fd943a.zip |
Patch to move RequiresGCollection bit to
AggValueSlot slot.
llvm-svn: 114045
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index d19827bf4f2..26b262ccb1c 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1551,8 +1551,7 @@ public: /// EmitAggExpr - Emit the computation of the specified expression /// of aggregate type. The result is computed into the given slot, /// which may be null to indicate that the value is not needed. - void EmitAggExpr(const Expr *E, AggValueSlot AS, bool IgnoreResult = false, - bool RequiresGCollection = false); + void EmitAggExpr(const Expr *E, AggValueSlot AS, bool IgnoreResult = false); /// EmitAggExprToLValue - Emit the computation of the specified expression of /// aggregate type into a temporary LValue. |