diff options
author | John McCall <rjmccall@apple.com> | 2010-12-14 08:05:40 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-12-14 08:05:40 +0000 |
commit | db40c7f57326f6c6f08e0b9e397dd2aff98c4c3a (patch) | |
tree | daa08811e49c7b87259e53d9a1dfd2e0f034ce9b /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 335f0e4ad4ad19737b378f0f46e95c34e1b8f6a1 (diff) | |
download | bcm5719-llvm-db40c7f57326f6c6f08e0b9e397dd2aff98c4c3a.tar.gz bcm5719-llvm-db40c7f57326f6c6f08e0b9e397dd2aff98c4c3a.zip |
Restore r121752 without modification.
llvm-svn: 121763
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 7bd0c3da9ea..8a0d78cc217 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -250,13 +250,14 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, QualType RetTy, Builder.SetInsertPoint(EntryBB); - QualType FnType = getContext().getFunctionType(RetTy, 0, 0, false, 0, - false, false, 0, 0, - /*FIXME?*/ - FunctionType::ExtInfo()); - // Emit subprogram debug descriptor. if (CGDebugInfo *DI = getDebugInfo()) { + // FIXME: what is going on here and why does it ignore all these + // interesting type properties? + QualType FnType = + getContext().getFunctionType(RetTy, 0, 0, + FunctionProtoType::ExtProtoInfo()); + DI->setLocation(StartLoc); DI->EmitFunctionStart(GD, FnType, CurFn, Builder); } |