diff options
| author | John McCall <rjmccall@apple.com> | 2011-03-09 04:27:21 +0000 |
|---|---|---|
| committer | John McCall <rjmccall@apple.com> | 2011-03-09 04:27:21 +0000 |
| commit | a738c25f5e095b2c72c4bfece65c00df7e23d750 (patch) | |
| tree | d918394b131d7b9c02eb8455ef71b5b49e97b524 /clang/lib/CodeGen/CGCXX.cpp | |
| parent | 6a014d5c3069e3861f3abd7e6bb43e7c85e0b84b (diff) | |
| download | bcm5719-llvm-a738c25f5e095b2c72c4bfece65c00df7e23d750.tar.gz bcm5719-llvm-a738c25f5e095b2c72c4bfece65c00df7e23d750.zip | |
Use the "undergoes default argument promotion" bit on parameters to
simplify the logic of initializing function parameters so that we don't need
both a variable declaration and a type in FunctionArgList. This also means
that we need to propagate the CGFunctionInfo down in a lot of places rather
than recalculating it from the FAL. There's more we can do to eliminate
redundancy here, and I've left FIXMEs behind to do it.
llvm-svn: 127314
Diffstat (limited to 'clang/lib/CodeGen/CGCXX.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGCXX.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGCXX.cpp b/clang/lib/CodeGen/CGCXX.cpp index 7ffc6e73255..04c2b77256e 100644 --- a/clang/lib/CodeGen/CGCXX.cpp +++ b/clang/lib/CodeGen/CGCXX.cpp @@ -204,10 +204,13 @@ void CodeGenModule::EmitCXXConstructor(const CXXConstructorDecl *D, GlobalDecl(D, Ctor_Base))) return; + const CGFunctionInfo &FnInfo = getTypes().getFunctionInfo(D, Type); + + // FIXME: re-use FnInfo in this computation! llvm::Function *Fn = cast<llvm::Function>(GetAddrOfCXXConstructor(D, Type)); setFunctionLinkage(D, Fn); - CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn); + CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn, FnInfo); SetFunctionDefinitionAttributes(D, Fn); SetLLVMFunctionAttributesForDefinition(D, Fn); @@ -263,10 +266,13 @@ void CodeGenModule::EmitCXXDestructor(const CXXDestructorDecl *D, if (Type == Dtor_Base && !TryEmitBaseDestructorAsAlias(D)) return; + const CGFunctionInfo &FnInfo = getTypes().getFunctionInfo(D, Type); + + // FIXME: re-use FnInfo in this computation! llvm::Function *Fn = cast<llvm::Function>(GetAddrOfCXXDestructor(D, Type)); setFunctionLinkage(D, Fn); - CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn); + CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn, FnInfo); SetFunctionDefinitionAttributes(D, Fn); SetLLVMFunctionAttributesForDefinition(D, Fn); |

