llvm-project/clang/lib/Sema
Chris Lattner cda4d7e196 introduce a new -fheinous-gnu-extensions flag that enables really
really horrible extensions that are disabled by default but that can
be accepted by -fheinous-gnu-extensions (but which always emit a 
warning when enabled).

As our first instance of this, implement PR3788/PR3794, which allows
non-lvalues in inline asms in contexts where lvalues are required. bleh.

llvm-svn: 66910
2009-03-13 17:38:01 +00:00
..
CMakeLists.txt Implement the basic approach for instantiating types, with a lot of FIXME'd 2009-02-27 19:31:52 +00:00
CXXFieldCollector.h Unifies the name-lookup mechanisms used in various parts of the AST 2008-12-11 16:49:14 +00:00
IdentifierResolver.cpp Switch attributes to be allocated from the declcontext bump pointer just like 2009-03-04 06:34:08 +00:00
IdentifierResolver.h Rework the way we find locally-scoped external declarations when we 2009-03-02 00:19:53 +00:00
Makefile rename libclangSEMA to libclangSema 2008-09-07 17:09:06 +00:00
ParseAST.cpp Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pass as an argument a TranslationUnit object whose contents live beyond the call to ParseAST. 2009-01-28 04:29:29 +00:00
Sema.cpp Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65694 and http://llvm.org/viewvc/llvm-project?view=rev&revision=66741). 2009-03-13 15:38:40 +00:00
Sema.h Reimplement fix for <rdar://problem/6451399> problems with labels and blocks. 2009-03-13 16:03:38 +00:00
SemaAttr.cpp Handle #pragma pack(0). I left this out of diagnostic because users should 2009-03-06 20:45:54 +00:00
SemaCXXScopeSpec.cpp Add basic, hackish support for instantiation of typedefs in a class 2009-03-11 16:48:53 +00:00
SemaChecking.cpp When checking printf-arguments for functions with '__attribute__ ((format (printf, X, Y)))' 2009-02-27 17:58:43 +00:00
SemaDecl.cpp Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65694 and http://llvm.org/viewvc/llvm-project?view=rev&revision=66741). 2009-03-13 15:38:40 +00:00
SemaDeclAttr.cpp Add Parse/Sema support for weak_import attribute. 2009-03-06 06:39:57 +00:00
SemaDeclCXX.cpp Move most of the checking from ActOnCXXMemberDeclarator to other, more general routines. This is a step toward separating the checking logic from Declarators, which in turn is required for template instantiation. 2009-03-11 23:00:04 +00:00
SemaDeclObjC.cpp Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65694 and http://llvm.org/viewvc/llvm-project?view=rev&revision=66741). 2009-03-13 15:38:40 +00:00
SemaExpr.cpp Fix <rdar://problem/6675489> BlockDecl should not use llvm::smallvector. 2009-03-13 16:56:44 +00:00
SemaExprCXX.cpp Rename DiagnoseIncompleteType to RequireCompleteType, and update the documentation to reflect the fact that we can instantiate templates here 2009-03-09 16:13:40 +00:00
SemaExprObjC.cpp Simplify SelectorTable::constructSetterName() usage... 2009-03-10 17:24:38 +00:00
SemaInherit.cpp Eliminate CXXRecordType 2009-02-28 01:32:25 +00:00
SemaInherit.h Eliminate CXXRecordType 2009-02-28 01:32:25 +00:00
SemaInit.cpp Fix PR3509 by providing correct starting locations for initializer lists 2009-03-01 17:12:46 +00:00
SemaLookup.cpp Improve the representation of operator expressions like "x + y" within 2009-03-13 00:33:25 +00:00
SemaNamedCast.cpp Rename DiagnoseIncompleteType to RequireCompleteType, and update the documentation to reflect the fact that we can instantiate templates here 2009-03-09 16:13:40 +00:00
SemaOverload.cpp Improve the representation of operator expressions like "x + y" within 2009-03-13 00:33:25 +00:00
SemaOverload.h Introduce _Complex conversions into the function overloading 2009-02-12 00:15:05 +00:00
SemaStmt.cpp introduce a new -fheinous-gnu-extensions flag that enables really 2009-03-13 17:38:01 +00:00
SemaTemplate.cpp Store the type of the integral value within a TemplateArgument, so that we can more efficiently reconstruct an IntegerLiteral from it during template instantiation 2009-03-12 22:20:26 +00:00
SemaTemplateInstantiate.cpp Improve the representation of operator expressions like "x + y" within 2009-03-13 00:33:25 +00:00
SemaType.cpp Rename DiagnoseIncompleteType to RequireCompleteType, and update the documentation to reflect the fact that we can instantiate templates here 2009-03-09 16:13:40 +00:00