aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaExceptionSpec.cpp
AgeCommit message (Expand)Author
2013-04-20C++1y: Allow aggregates to have default initializers.Richard Smith
2013-04-16Basic support for Microsoft property declarations andJohn McCall
2013-03-27PR15597: Fix a confusion between the implicit exception specification and theRichard Smith
2013-03-08ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType.Jordan Rose
2013-02-18Replace TypeLoc llvm::cast support to be well-defined.David Blaikie
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-11-28Per C++11 [except.spec]p2, rvalue references are not permitted in exception s...Richard Smith
2012-11-28PR14388: An array or function type in an exception specification should beRichard Smith
2012-10-20Rework implementation of DR1492: Apply the resolution to operator delete too,Richard Smith
2012-10-16DR1492: In a definition of a destructor, the exception specification must beRichard Smith
2012-09-12PR13811: Add a FunctionParmPackExpr node to handle references to functionRichard Smith
2012-08-16Store SourceManager pointer on PrintingPolicy in the case where we're dumping,Richard Smith
2012-07-27Final piece of core issue 1330: delay computing the exception specification ofRichard Smith
2012-05-04Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType()Douglas Gregor
2012-04-19Implements boxed expressions for Objective-C. <rdar://problem/10194391>Patrick Beard
2012-04-17Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it.Richard Smith
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-02-05Basic: import SmallString<> into clang namespaceDylan Noblesmith
2012-02-04Move a method from IdentifierTable.h out of line and remove the SmallString i...Benjamin Kramer
2012-01-17Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie
2011-09-27Only print _Bool as 'bool' when 'bool' is defined as an object-likeDouglas Gregor
2011-09-27When 'bool' is not a built-in type but is defined as a macro, printDouglas Gregor
2011-09-23Switch assert(0/false) llvm_unreachable.David Blaikie
2011-09-17Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...Francois Pichet
2011-06-11Implement support for C++11 in-class initialization of non-static data members.Richard Smith
2011-05-24MSVC doesn't do any validation regarding exception specification.Francois Pichet
2011-05-20Fix PR9941 for out-of-line template destructors too.Sebastian Redl
2011-05-19Reapply r121528, fixing PR9941 by delaying the exception specification check ...Sebastian Redl
2011-04-22For consistency, change suffix from war_ to warn_ for some Microsoft warnings...Francois Pichet
2011-03-19Downgrade err_mismatched_exception_spec to a ExtWarning in Microsoft mode. MS...Francois Pichet
2011-03-15More robust check for the special C++0x operator new workaround.Sebastian Redl
2011-03-15Implement a hack to work around the changing exception specification of opera...Sebastian Redl
2011-03-13Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcep...Sebastian Redl
2011-03-12Propagate the new exception information to FunctionProtoType.Sebastian Redl
2011-03-12Forgotten part of previous commit.Abramo Bagnara
2011-03-06Reinstate r127112, "Propagate new-style exception spec information to ExtProt...Sebastian Redl
2011-03-06Revert r127112, "Propagate new-style exception spec information to ExtProtoIn...NAKAMURA Takumi
2011-03-05Propagate new-style exception spec information to ExtProtoInfo.Sebastian Redl
2011-03-02Semantic checking for exception specifications should be triggered byJohn McCall
2010-12-14Added missing IgnoreParens().Abramo Bagnara
2010-12-14Restore r121752 without modification.John McCall
2010-12-14Pull out r121752 in case it's causing the selfhost breakage.John McCall
2010-12-14Factor out most of the extra state in a FunctionProtoType into a separateJohn McCall
2010-12-10Added ParenType type node.Abramo Bagnara
2010-08-30Emulate (some of) Microsoft's looser semantic checking of exceptionDouglas Gregor
2010-08-25Split out a header to hold APIs meant for the Sema implementation from Sema.h.John McCall
2010-08-12Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor
2010-05-28Disable exception-spec compatibility checking under -fno-exceptions.John McCall
2010-05-21Use CanQualType to enforce the use of a canonical type argument toDouglas Gregor