diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-03-05 22:42:13 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-03-05 22:42:13 +0000 |
commit | 802a45332a98b71a0ef0ac83e12c8fea8ef3e887 (patch) | |
tree | 7ddf3229d9ae0d4665a42db6b36ad844e49766f6 /clang/lib/Parse/ParseExpr.cpp | |
parent | 75e7a147ae64af6910fe7fea3763247e00bf6a23 (diff) | |
download | bcm5719-llvm-802a45332a98b71a0ef0ac83e12c8fea8ef3e887.tar.gz bcm5719-llvm-802a45332a98b71a0ef0ac83e12c8fea8ef3e887.zip |
Propagate new-style exception spec information to Declarator.
llvm-svn: 127111
Diffstat (limited to 'clang/lib/Parse/ParseExpr.cpp')
-rw-r--r-- | clang/lib/Parse/ParseExpr.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseExpr.cpp b/clang/lib/Parse/ParseExpr.cpp index 4a155a302f8..ab74d5160d9 100644 --- a/clang/lib/Parse/ParseExpr.cpp +++ b/clang/lib/Parse/ParseExpr.cpp @@ -1918,8 +1918,9 @@ ExprResult Parser::ParseBlockLiteralExpression() { SourceLocation(), 0, 0, 0, true, SourceLocation(), - false, SourceLocation(), - false, 0, 0, 0, + EST_None, + SourceLocation(), + 0, 0, 0, 0, CaretLoc, CaretLoc, ParamInfo), CaretLoc); |