diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-04-29 17:30:04 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-04-29 17:30:04 +0000 |
commit | 7dc813462dd9fd3f6f4296f896a12de14264fef8 (patch) | |
tree | ef3f4354bdb9ebc59c51598c6ed9a801a30a7745 /lib/Sema/SemaDecl.cpp | |
parent | 552333cfa9c91d3be656699dacf7c5e98e875ee8 (diff) |
Have the parser communicate the exception specification to the action.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 14136a30b6..4d6a103ccd 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -3066,8 +3066,8 @@ NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, Error = Error; // Silence warning. assert(!Error && "Error setting up implicit decl!"); Declarator D(DS, Declarator::BlockContext); - D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, SourceLocation(), - 0, 0, 0, Loc, D), + D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, SourceLocation(), 0, + 0, 0, false, false, 0, 0, Loc, D), SourceLocation()); D.SetIdentifier(&II, Loc); |