- Nov 30, 2013
-
-
Saleem Abdulrasool authored
gcc treats [[gnu:const]], [[gnu::__const]], and [[gnu:__const__]] as all being equivalent. Add an additional test case to ensure that we do not miss the last case. llvm-svn: 195982
-
- Nov 27, 2013
-
-
Aaron Ballman authored
Adding the Subjects entry back for the noreturn attributes. This caused some test cases to be updated because the original diagnostic was about applying to methods as well as functions, but the semantic checking disallowed methods. llvm-svn: 195862
-
- Nov 24, 2013
-
-
Aaron Ballman authored
__declspec(uuid) is only allowed on a class according to MSDN; this makes the semantic checking consistent with what the attribute specifies in Attr.td. Also adds a test case. llvm-svn: 195579
-
- Nov 21, 2013
-
-
Richard Smith authored
case where the type in the following declaration is specified as a template-id, and refactor for clarity. llvm-svn: 195280
-
- Nov 19, 2013
-
-
Richard Smith authored
and we see an ill-formed declarator that would probably be well-formed if the tag definition were just missing a semicolon, use that as the diagnostic instead of producing some other mysterious error. llvm-svn: 195163
-
- Nov 16, 2013
-
-
Richard Smith authored
llvm-svn: 194872
-
- Nov 15, 2013
-
-
Richard Smith authored
llvm-svn: 194850
-
Richard Smith authored
llvm-svn: 194849
-
- Nov 13, 2013
-
-
Serge Pavlov authored
This patch fixes PR8264. Duplicate qualifiers already are diagnozed, now the same diagnostics is issued for duplicate function specifiers. Differential Revision: http://llvm-reviews.chandlerc.com/D2025 llvm-svn: 194559
-
- Nov 09, 2013
-
-
Richard Smith authored
definition. If we see something that looks like a namespace definition inside a class, that strongly indicates that a close brace was missing somewhere. llvm-svn: 194319
-
Rafael Espindola authored
llvm-svn: 194291
-
- Nov 08, 2013
-
-
Richard Smith authored
llvm-svn: 194281
-
- Oct 31, 2013
-
-
Richard Smith authored
into a separate "parse an attribute that takes a type argument" codepath. This results in both codepaths being a lot cleaner and simpler, and fixes some bugs where the type argument handling bled into the expression argument handling and caused us to both accept invalid and reject valid attribute arguments. llvm-svn: 193731
-
- Oct 29, 2013
-
-
Nick Lewycky authored
[[gnu::no_address_safety_analysis]]. llvm-svn: 193583
-
Nick Lewycky authored
the difference. llvm-svn: 193582
-
- Oct 28, 2013
-
-
Richard Smith authored
statement (after a case label, if, etc). Patch by Olivier Goffart! llvm-svn: 193545
-
- Oct 24, 2013
-
-
Richard Smith authored
and we know where they go. llvm-svn: 193297
-
Richard Smith authored
which we don't think can't have one, only allow it in the tiny number of attributes which opts into this weird parse rule. I've manually checked that the handlers for all these attributes can in fact cope with an identifier as the argument. This is still somewhat terrible; we should move more fully towards picking the parsing rules based on the attribute, and make the Parse -> Sema interface more type-safe. llvm-svn: 193295
-
- Oct 23, 2013
-
-
David Majnemer authored
Commit r191484 treated constexpr function templates as normal function templates with respect to delaying their parsing. However, this is unnecessarily restrictive because there is no compatibility concern with constexpr, MSVC doesn't support it. Instead, simply disable delayed template parsing for constexpr function templates. This largely reverts the changes made in r191484 but keeps it's unit test. This fixes PR17661. llvm-svn: 193274
-
- Oct 22, 2013
-
-
Chandler Carruth authored
This patch wasn't reviewed, and isn't correctly preserving the behaviors relied upon by QT. I don't have a direct example of fallout, but it should go through the standard code review process. For example, it should never have removed the QT test case that was added when fixing those users. llvm-svn: 193174
-
Serge Pavlov authored
This is a fix to PR17649, caused by fix in r193073. QT uses 'break' statement to implement their 'foreach' macro. To enable build of QT, this fix reenables break but only in 'for' statement specifier and only in the third expression. llvm-svn: 193170
-
Reid Kleckner authored
Microsoft inline asm crashes on the hexagon bot for unknown reasons. This reverts commit r193124. llvm-svn: 193128
-
Reid Kleckner authored
llvm-svn: 193124
-
- Oct 21, 2013
-
-
Serge Pavlov authored
Due to statement expressions supported as GCC extension, it is possible to put 'break' or 'continue' into a loop/switch statement but outside its body, for example: for ( ; ({ if (first) { first = 0; continue; } 0; }); ) Such usage must be diagnosed as an error, GCC rejects it. To recognize this and similar patterns the flags BreakScope and ContinueScope are temporarily turned off while parsing condition expression. Differential Revision: http://llvm-reviews.chandlerc.com/D1762 llvm-svn: 193073
-
- Oct 19, 2013
-
-
Kaelyn Uhrain authored
Now that CorrectTypo knows how to correctly search classes for typo correction candidates, there is no good reason to only replace an existing CXXScopeSpecifier if it refers to a namespace. While the actual enablement was a matter of changing a single comparison, the fallout from enabling the functionality required a lot more code changes (including my two previous commits). llvm-svn: 193020
-
- Oct 18, 2013
-
-
Alp Toker authored
r177003 applied the late parsed template technique to friend functions but omitted the corresponding check for redefinitions. This patch adds the same check already in use for templates to the new code path in order to diagnose and reject invalid redefinitions that were being silently accepted. Fixes PR17324. Reviewed by Richard Smith. llvm-svn: 192948
-
- Oct 15, 2013
-
-
Richard Smith authored
a patch by Michael Han. llvm-svn: 192666
-
Richard Smith authored
that looks like a function declaration, except that it's missing a return type, try typo-correcting it to the relevant constructor name. In passing, fix a bug where the missing-type-specifier recovery codepath would drop a preceding scope specifier on the floor, leading to follow-on diagnostics and incorrect recovery for the auto-in-c++98 hack. llvm-svn: 192644
-
- Oct 14, 2013
-
-
Richard Smith authored
an accidentally-included name for the declarator. llvm-svn: 192559
-
- Oct 10, 2013
-
-
Benjamin Kramer authored
Use the existing convenience function. llvm-svn: 192347
-
- Oct 09, 2013
-
-
David Majnemer authored
An invalid decltype expression like 'decltype int' gives: error: expected '(' after 'decltype' This makes it so 'sizeof int' gives a similar one: error: expected parentheses around type name in sizeof expression llvm-svn: 192258
-
Reid Kleckner authored
MSVC and clang with -fms-extensions allow pure virtual methods to be defined inline after the "= 0" tokens. Clang warns on these because it is not standard, but incorrectly warns on out-of-line definitions, which are standard. With this change, clang will only warn on inline definitions of pure virtual methods. Fixes some self-host warnings on out-of-line definitions of pure virtual destructors. llvm-svn: 192244
-
- Oct 08, 2013
-
-
Serge Pavlov authored
llvm-svn: 192208
-
Serge Pavlov authored
This fixes PR16992 - Fixit missing when "sizeof type" found. llvm-svn: 192200
-
- Sep 28, 2013
-
-
Richard Smith authored
llvm-svn: 191609
-
Richard Smith authored
and capturing a variable declaration, and complete the implementation of them. llvm-svn: 191605
-
- Sep 27, 2013
-
-
David Majnemer authored
We previously handled one-dimensional arrays but didn't consider the general case. The fix is simple: keep going through subsequent dimensions until we get to the base element. llvm-svn: 191493
-
David Majnemer authored
Functions declared as constexpr must have their parsing delayed in -fdelayed-template-parsing mode so as not to upset later template instantiation. N.B. My reading of the standard makes it seem like delayed template parsing is at odds with constexpr. We may want to make refinements in other places in clang to make constexpr play nicer with this feature. This fixes PR17334. llvm-svn: 191484
-
- Sep 24, 2013
-
-
Fariborz Jahanian authored
class/protocol decls in @implementation and fixup modern rewriter to handle that. // rdar://15066233 llvm-svn: 191311
-
- Sep 22, 2013
-
-
David Majnemer authored
Summary: Parsing cast expressions during error recovery can put us in a bad state. Check to see if the token for a simple-type-specifier makes sense before further parsing. Fixes PR17255. Reviewers: rsmith, doug.gregor, CornedBee, eli.friedman CC: cfe-commits Differential Revision: http://llvm-reviews.chandlerc.com/D1696 llvm-svn: 191159
-