hanchenye-llvm-project/clang/lib/Sema
Richard Smith 8ea9720b90 For -Wignored-qualifiers, don't warn on qualifiers which we acquire via a
typedef. Also don't warn on the _Atomic type specifier, just on the _Atomic
type qualifier.

llvm-svn: 178218
2013-03-28 03:27:52 +00:00
..
AnalysisBasedWarnings.cpp Fix typos: [Dd]iagnosic -> [Dd]iagnostic 2013-03-01 21:41:22 +00:00
AttributeList.cpp PR14922: when printing an attribute, use the real syntax of the attribute (GNU, C++11, MS Declspec) instead of hardcoded GNU syntax. 2013-01-24 16:46:58 +00:00
CMakeLists.txt OpenMP threadprivate directive parsing and semantic analysis 2013-03-22 06:34:35 +00:00
CodeCompleteConsumer.cpp Allow the computation of the base priority for a declaration code completion result to consider the completion context 2013-01-31 04:52:16 +00:00
DeclSpec.cpp Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar for the _Atomic type specifier. 2013-03-28 01:55:44 +00:00
DelayedDiagnostic.cpp objective-C: when diagnosing deprecated/unavailable usage of 2012-09-21 20:46:37 +00:00
IdentifierResolver.cpp [Modules] Cope better with top-level declarations loaded after being declared in the current translation unit <rdar://problem/13189985>. 2013-02-11 18:16:18 +00:00
JumpDiagnostics.cpp s/CPlusPlus0x/CPlusPlus11/g 2013-01-02 11:42:31 +00:00
Makefile
MultiplexExternalSemaSource.cpp Simplify FindExternalVisibleDeclsByName by making it return a bool indicating 2013-02-07 03:30:24 +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 <rdar://problem/12368093> Extend module maps with a 'conflict' declaration, and warn when a newly-imported module conflicts with an already-imported module. 2013-03-20 21:10:35 +00:00
SemaAccess.cpp Don't crash when diagnosing path-constrained protected 2013-02-27 00:08:19 +00:00
SemaAttr.cpp Add a new 'type_visibility' attribute to allow users to 2013-02-20 01:54:26 +00:00
SemaCXXScopeSpec.cpp Remove some no-op static_casts. 2013-03-26 00:54:11 +00:00
SemaCast.cpp Make the -Wreinterpret-base-class logic safe against invalid 2013-03-27 00:03:48 +00:00
SemaChecking.cpp For printf checking, handle nested typedefs for darwin-specific checking. 2013-03-25 22:28:37 +00:00
SemaCodeComplete.cpp Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar for the _Atomic type specifier. 2013-03-28 01:55:44 +00:00
SemaConsumer.cpp
SemaDecl.cpp Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar for the _Atomic type specifier. 2013-03-28 01:55:44 +00:00
SemaDeclAttr.cpp Generate metadata to implement the -cl-kernel-arg-info option. 2013-03-24 13:58:12 +00:00
SemaDeclCXX.cpp PR15597: Fix a confusion between the implicit exception specification and the 2013-03-27 00:22:47 +00:00
SemaDeclObjC.cpp Split "incomplete implementation" warnings for ObjC into separate warnings. 2013-03-27 00:02:21 +00:00
SemaExceptionSpec.cpp PR15597: Fix a confusion between the implicit exception specification and the 2013-03-27 00:22:47 +00:00
SemaExpr.cpp Objective-C: Issue more precise warning when user 2013-03-27 21:19:25 +00:00
SemaExprCXX.cpp Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_traits>. 2013-03-27 01:34:16 +00:00
SemaExprMember.cpp Objective-C: Issue more precise warning when user 2013-03-27 21:19:25 +00:00
SemaExprObjC.cpp Add a clarifying note when a return statement is rejected because 2013-03-19 07:04:25 +00:00
SemaFixItUtils.cpp s/CPlusPlus0x/CPlusPlus11/g 2013-01-02 11:42:31 +00:00
SemaInit.cpp <rdar://problem/13278115> Improve diagnostic when failing to bind an rvalue reference to an lvalue of compatible type. 2013-03-26 23:59:23 +00:00
SemaLambda.cpp Adjust the special non-C++ enum block return type inference 2013-03-09 00:54:31 +00:00
SemaLookup.cpp <rdar://problem/13317030> Consider using directives when performing unqualified name lookup into declarations contexts represented by the qualified-id but not in the actual scope hierarchy. 2013-03-27 12:51:49 +00:00
SemaObjCProperty.cpp Objective-C: Property declaration overiding one in 2013-03-25 23:59:42 +00:00
SemaOpenMP.cpp OpenMP threadprivate directive parsing and semantic analysis 2013-03-22 06:34:35 +00:00
SemaOverload.cpp <rdar://problem/13267210> Ensure that Sema::CompareReferenceRelationship returns consistent results with invalid types. 2013-03-26 23:36:30 +00:00
SemaPseudoObject.cpp Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. 2013-02-08 22:30:41 +00:00
SemaStmt.cpp Fix a crash-on-valid where a block capture copy expression was 2013-03-22 02:10:40 +00:00
SemaStmtAsm.cpp Pass the diagnostic in for better error messages. 2013-03-27 06:06:26 +00:00
SemaStmtAttr.cpp PR15300: Support C++11 attributes on base-specifiers. We don't support any such 2013-02-19 23:47:15 +00:00
SemaTemplate.cpp Add TagDecl::hasNameForLinkage(), which is true if the tag 2013-03-09 00:54:27 +00:00
SemaTemplateDeduction.cpp Sema: Preserve attributes on parameters in instantiated function templates. 2013-03-08 22:25:36 +00:00
SemaTemplateInstantiate.cpp Sema: Preserve attributes on parameters in instantiated function templates. 2013-03-08 22:25:36 +00:00
SemaTemplateInstantiateDecl.cpp OpenMP threadprivate directive parsing and semantic analysis 2013-03-22 06:34:35 +00:00
SemaTemplateVariadic.cpp Use None rather than Optional<T>() where possible. 2013-02-21 01:47:18 +00:00
SemaType.cpp For -Wignored-qualifiers, don't warn on qualifiers which we acquire via a 2013-03-28 03:27:52 +00:00
TargetAttributesSema.cpp PR14922: when printing an attribute, use the real syntax of the attribute (GNU, C++11, MS Declspec) instead of hardcoded GNU syntax. 2013-01-24 16:46:58 +00:00
TargetAttributesSema.h Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. 2012-12-20 19:22:21 +00:00
TreeTransform.h Don't reject __restrict applied to a dependent type; it might instantiate to a pointer or reference type. 2013-03-27 23:36:39 +00:00
TypeLocBuilder.h Replace TypeLoc llvm::cast support to be well-defined. 2013-02-18 22:06:02 +00:00