.. |
AnalysisBasedWarnings.cpp
|
Per discussion on cfe-dev, re-enable suppression of -Wimplicit-fallthrough on C, but also include dialects of C++ earlier than C++11.
|
2012-11-12 21:20:48 +00:00 |
AttributeList.cpp
|
Add support for "type safety" attributes that allow checking that 'void *'
|
2012-08-17 00:08:38 +00:00 |
CMakeLists.txt
|
From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources.
|
2012-10-18 19:05:02 +00:00 |
CodeCompleteConsumer.cpp
|
[libclang] Remove the ParentKind cursor kind from code-completion results.
|
2012-09-26 16:39:56 +00:00 |
DeclSpec.cpp
|
DR1528: C++11 doesn't allow repeated cv-qualifiers in declarators after all.
|
2012-10-17 23:31:46 +00:00 |
DelayedDiagnostic.cpp
|
objective-C: when diagnosing deprecated/unavailable usage of
|
2012-09-21 20:46:37 +00:00 |
IdentifierResolver.cpp
|
Fix more try scoping bugs introduced by r167650.
|
2012-11-12 22:25:41 +00:00 |
JumpDiagnostics.cpp
|
Correctly reject gotos in function-level try blocks. PR14225.
|
2012-10-31 23:55:28 +00:00 |
Makefile
|
…
|
|
MultiplexExternalSemaSource.cpp
|
From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources.
|
2012-10-18 19:05:02 +00:00 |
Scope.cpp
|
Reapply r151638 and r151641.
|
2012-02-29 10:24:19 +00:00 |
ScopeInfo.cpp
|
-Warc-repeated-use-of-weak: fix a use-of-uninitialized and add a test case.
|
2012-10-11 17:02:00 +00:00 |
Sema.cpp
|
Reject uses of __int128 on platforms that don't support it. Also move the ugly
|
2012-11-29 05:41:51 +00:00 |
SemaAccess.cpp
|
Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. See: http://en.wikipedia.org/wiki/If_and_only_if Commit 164766
|
2012-09-27 10:16:10 +00:00 |
SemaAttr.cpp
|
Permanently end the whole "pragma got handled by the parser too early"
|
2012-10-04 02:36:51 +00:00 |
SemaCXXScopeSpec.cpp
|
Fix CXXRecordDecl::forallBases to not look through bases which are dependent
|
2012-11-22 00:24:47 +00:00 |
SemaCast.cpp
|
Implement GCC's -Wint-to-pointer-cast.
|
2012-10-16 18:53:14 +00:00 |
SemaChecking.cpp
|
Make -Wtautological-constant-out-of-range-compare behave sanely for enums with a signed fixed type.
|
2012-11-30 23:09:29 +00:00 |
SemaCodeComplete.cpp
|
From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources.
|
2012-10-18 19:05:02 +00:00 |
SemaConsumer.cpp
|
Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch
|
2011-12-20 02:48:34 +00:00 |
SemaDecl.cpp
|
Merge function types in C.
|
2012-11-29 16:09:03 +00:00 |
SemaDeclAttr.cpp
|
A couple of small fixes to r167783
|
2012-11-13 00:18:47 +00:00 |
SemaDeclCXX.cpp
|
Consistently use 'needsImplicit<special member>' to determine whether we need
|
2012-12-01 02:35:44 +00:00 |
SemaDeclObjC.cpp
|
objective-C: Do not issue deprecated warning about implementation
|
2012-11-17 20:53:53 +00:00 |
SemaExceptionSpec.cpp
|
Per C++11 [except.spec]p2, rvalue references are not permitted in exception specifications.
|
2012-11-28 22:52:42 +00:00 |
SemaExpr.cpp
|
Fix the determination of whether a capture refers to an enclosing
|
2012-12-01 01:01:09 +00:00 |
SemaExprCXX.cpp
|
Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface,
|
2012-11-28 03:56:09 +00:00 |
SemaExprMember.cpp
|
Fix regression in r168477. Use canonical decl when looking for base class
|
2012-11-22 00:40:54 +00:00 |
SemaExprObjC.cpp
|
objective-C arc: Underline the selector when issuing
|
2012-11-28 01:27:44 +00:00 |
SemaFixItUtils.cpp
|
Drop the ASTContext.h include from Stmt.h and fix up transitive users.
|
2012-07-04 17:04:04 +00:00 |
SemaInit.cpp
|
Consistently use 'needsImplicit<special member>' to determine whether we need
|
2012-12-01 02:35:44 +00:00 |
SemaLambda.cpp
|
Handle lambdas where the lambda-declarator is an explicit "(void)". PR13854.
|
2012-09-20 01:40:23 +00:00 |
SemaLookup.cpp
|
Consistently use 'needsImplicit<special member>' to determine whether we need
|
2012-12-01 02:35:44 +00:00 |
SemaObjCProperty.cpp
|
Address Jordan's review: comments, spaces.
|
2012-10-31 01:18:22 +00:00 |
SemaOverload.cpp
|
Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface,
|
2012-11-28 03:56:09 +00:00 |
SemaPseudoObject.cpp
|
Fix crash-on-invalid. <rdar://problem/12765391>.
|
2012-11-29 03:13:49 +00:00 |
SemaStmt.cpp
|
Remove redundant (duplicated) check.
|
2012-11-18 22:28:42 +00:00 |
SemaStmtAsm.cpp
|
Finish reverting r167761, it's causing test failures.
|
2012-11-12 23:13:34 +00:00 |
SemaStmtAttr.cpp
|
Improve C++11 attribute parsing.
|
2012-10-03 01:56:22 +00:00 |
SemaTemplate.cpp
|
SemaCXX: an enumeral type can be of character or boolean type in a C++11 enum class. Make sure we create a literal of the right type.
|
2012-11-21 17:42:47 +00:00 |
SemaTemplateDeduction.cpp
|
SemaTemplateDeduction.cpp: Prune two obsolete descriptions. [-Wdocumentation]
|
2012-11-14 02:21:48 +00:00 |
SemaTemplateInstantiate.cpp
|
Store this Decl* as a Decl* instead of a uintptr_t. No functionality change.
|
2012-11-16 08:40:59 +00:00 |
SemaTemplateInstantiateDecl.cpp
|
Store this Decl* as a Decl* instead of a uintptr_t. No functionality change.
|
2012-11-16 08:40:59 +00:00 |
SemaTemplateVariadic.cpp
|
Improved MSVC __interface support by adding first class support for it, instead of aliasing to "struct" which had some incorrect behaviour. Patch by David Robins.
|
2012-08-31 18:45:21 +00:00 |
SemaType.cpp
|
Reject uses of __int128 on platforms that don't support it. Also move the ugly
|
2012-11-29 05:41:51 +00:00 |
TargetAttributesSema.cpp
|
Reapply r158700 and fixup patches, minus one hunk that slipped through and
|
2012-06-19 23:57:03 +00:00 |
TargetAttributesSema.h
|
…
|
|
TreeTransform.h
|
PR13098: If we're instantiating an overloaded binary operator and we could
|
2012-11-28 21:47:39 +00:00 |
TypeLocBuilder.h
|
Remove more unnecessary #include <llvm/ADT/SmallVector.h>
|
2011-06-20 06:11:46 +00:00 |