aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/SemaExceptionSpec.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-06-11Implement support for C++11 in-class initialization of non-static data members.Richard Smith1-4/+6
2011-05-24MSVC doesn't do any validation regarding exception specification.Francois Pichet1-1/+4
2011-05-20Fix PR9941 for out-of-line template destructors too.Sebastian Redl1-7/+12
2011-05-19Reapply r121528, fixing PR9941 by delaying the exception specification check ...Sebastian Redl1-0/+8
2011-04-22For consistency, change suffix from war_ to warn_ for some Microsoft warnings...Francois Pichet1-2/+2
2011-03-19Downgrade err_mismatched_exception_spec to a ExtWarning in Microsoft mode. MS...Francois Pichet1-11/+10
2011-03-15More robust check for the special C++0x operator new workaround.Sebastian Redl1-5/+5
2011-03-15Implement a hack to work around the changing exception specification of opera...Sebastian Redl1-2/+38
2011-03-13Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcep...Sebastian Redl1-4/+4
2011-03-12Propagate the new exception information to FunctionProtoType.Sebastian Redl1-45/+200
2011-03-12Forgotten part of previous commit.Abramo Bagnara1-4/+4
2011-03-06Reinstate r127112, "Propagate new-style exception spec information to ExtProt...Sebastian Redl1-4/+4
2011-03-06Revert r127112, "Propagate new-style exception spec information to ExtProtoIn...NAKAMURA Takumi1-4/+4
2011-03-05Propagate new-style exception spec information to ExtProtoInfo.Sebastian Redl1-4/+4
2011-03-02Semantic checking for exception specifications should be triggered byJohn McCall1-3/+3
2010-12-14Added missing IgnoreParens().Abramo Bagnara1-3/+1
2010-12-14Restore r121752 without modification.John McCall1-18/+17
2010-12-14Pull out r121752 in case it's causing the selfhost breakage.John McCall1-17/+18
2010-12-14Factor out most of the extra state in a FunctionProtoType into a separateJohn McCall1-18/+17
2010-12-10Added ParenType type node.Abramo Bagnara1-0/+2
2010-08-30Emulate (some of) Microsoft's looser semantic checking of exceptionDouglas Gregor1-0/+8
2010-08-25Split out a header to hold APIs meant for the Sema implementation from Sema.h.John McCall1-1/+1
2010-08-12Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor1-1/+1
2010-05-28Disable exception-spec compatibility checking under -fno-exceptions.John McCall1-0/+9
2010-05-21Use CanQualType to enforce the use of a canonical type argument toDouglas Gregor1-1/+1
2010-03-31Reinstate my CodeModificationHint -> FixItHint renaming patch, withoutDouglas Gregor1-2/+1
2010-03-31Revert r100008, which inexplicably breaks the clang-i686-darwin10 builderDouglas Gregor1-1/+2
2010-03-31Rename CodeModificationHint to FixItHint, since we've been using theDouglas Gregor1-2/+1
2010-03-30the big refactoring bits of PR3782.Rafael Espindola1-4/+2
2010-03-29Optimize PartialDiagnostic's memory-allocation behavior by placing aDouglas Gregor1-10/+14
2010-03-24When a declaration of a function is missing an exception specificationDouglas Gregor1-14/+115
2010-03-16Perform access control for the implicit base and member destructor callsJohn McCall1-3/+3
2010-02-12Work around an annoying, non-standard optimization in the glibcDouglas Gregor1-2/+63
2010-02-10Improve access control diagnostics. Perform access control on member-pointerJohn McCall1-2/+16
2009-12-10Implement C++ DR437, which involves exception-specifications that nameDouglas Gregor1-4/+13
2009-11-16First part of changes to eliminate problems with cv-qualifiers andDouglas Gregor1-2/+2
2009-10-14Have the exception specification checkers take partial diagnostics. Use this ...Sebastian Redl1-11/+14
2009-10-14Use CanQualType in the exception specification verification type sets.Sebastian Redl1-3/+3
2009-10-14Use partial diagnostics properly in call to RequireCompleteType. Among other ...Sebastian Redl1-8/+6
2009-10-14Do exception spec compatibility tests for member pointers, too.Sebastian Redl1-0/+5
2009-10-11Types appearing more than once in a spec shouldn't matter.Sebastian Redl1-5/+10
2009-10-11Test exception spec compatibility on return type and parameters.Sebastian Redl1-0/+309