diff options
author | Devang Patel <dpatel@apple.com> | 2011-02-16 01:11:51 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-02-16 01:11:51 +0000 |
commit | 34753802931fddcf57bd62c5b83bdca1a23017d7 (patch) | |
tree | bbce2f4b15d6a452217f0c8f1a098633ac18c52b /lib/CodeGen/CodeGenFunction.h | |
parent | 78bcd9139f4b35be75190446c95614120d9b4c09 (diff) |
Simplify test to check an aggregate argument that has non trivial constructor or destructor.
This patch rewrites r125142.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index d52a481269..5ea1565fc3 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1435,8 +1435,7 @@ public: llvm::GlobalValue::LinkageTypes Linkage); /// EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl. - void EmitParmDecl(const VarDecl &D, llvm::Value *Arg, - bool IndirectArgument = false); + void EmitParmDecl(const VarDecl &D, llvm::Value *Arg); //===--------------------------------------------------------------------===// // Statement Emission |