summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaExceptionSpec.cpp
Commit message (Expand)AuthorAgeFilesLines
* Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it.Richard Smith2012-04-171-1/+358
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-111-8/+8
* Basic: import SmallString<> into clang namespaceDylan Noblesmith2012-02-051-1/+1
* Move a method from IdentifierTable.h out of line and remove the SmallString i...Benjamin Kramer2012-02-041-0/+1
* Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie2012-01-171-2/+0
* Only print _Bool as 'bool' when 'bool' is defined as an object-likeDouglas Gregor2011-09-271-3/+3
* When 'bool' is not a built-in type but is defined as a macro, printDouglas Gregor2011-09-271-2/+2
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-231-1/+1
* Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...Francois Pichet2011-09-171-3/+3
* Implement support for C++11 in-class initialization of non-static data members.Richard Smith2011-06-111-4/+6
* MSVC doesn't do any validation regarding exception specification.Francois Pichet2011-05-241-1/+4
* Fix PR9941 for out-of-line template destructors too.Sebastian Redl2011-05-201-7/+12
* Reapply r121528, fixing PR9941 by delaying the exception specification check ...Sebastian Redl2011-05-191-0/+8
* For consistency, change suffix from war_ to warn_ for some Microsoft warnings...Francois Pichet2011-04-221-2/+2
* Downgrade err_mismatched_exception_spec to a ExtWarning in Microsoft mode. MS...Francois Pichet2011-03-191-11/+10
* More robust check for the special C++0x operator new workaround.Sebastian Redl2011-03-151-5/+5
* Implement a hack to work around the changing exception specification of opera...Sebastian Redl2011-03-151-2/+38
* Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcep...Sebastian Redl2011-03-131-4/+4
* Propagate the new exception information to FunctionProtoType.Sebastian Redl2011-03-121-45/+200
* Forgotten part of previous commit.Abramo Bagnara2011-03-121-4/+4
* Reinstate r127112, "Propagate new-style exception spec information to ExtProt...Sebastian Redl2011-03-061-4/+4
* Revert r127112, "Propagate new-style exception spec information to ExtProtoIn...NAKAMURA Takumi2011-03-061-4/+4
* Propagate new-style exception spec information to ExtProtoInfo.Sebastian Redl2011-03-051-4/+4
* Semantic checking for exception specifications should be triggered byJohn McCall2011-03-021-3/+3
* Added missing IgnoreParens().Abramo Bagnara2010-12-141-3/+1
* Restore r121752 without modification.John McCall2010-12-141-18/+17
* Pull out r121752 in case it's causing the selfhost breakage.John McCall2010-12-141-17/+18
* Factor out most of the extra state in a FunctionProtoType into a separateJohn McCall2010-12-141-18/+17
* Added ParenType type node.Abramo Bagnara2010-12-101-0/+2
* Emulate (some of) Microsoft's looser semantic checking of exceptionDouglas Gregor2010-08-301-0/+8
* Split out a header to hold APIs meant for the Sema implementation from Sema.h.John McCall2010-08-251-1/+1
* Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor2010-08-121-1/+1
* Disable exception-spec compatibility checking under -fno-exceptions.John McCall2010-05-281-0/+9
* Use CanQualType to enforce the use of a canonical type argument toDouglas Gregor2010-05-211-1/+1
* Reinstate my CodeModificationHint -> FixItHint renaming patch, withoutDouglas Gregor2010-03-311-2/+1
* Revert r100008, which inexplicably breaks the clang-i686-darwin10 builderDouglas Gregor2010-03-311-1/+2
* Rename CodeModificationHint to FixItHint, since we've been using theDouglas Gregor2010-03-311-2/+1
* the big refactoring bits of PR3782.Rafael Espindola2010-03-301-4/+2
* Optimize PartialDiagnostic's memory-allocation behavior by placing aDouglas Gregor2010-03-291-10/+14
* When a declaration of a function is missing an exception specificationDouglas Gregor2010-03-241-14/+115
* Perform access control for the implicit base and member destructor callsJohn McCall2010-03-161-3/+3
* Work around an annoying, non-standard optimization in the glibcDouglas Gregor2010-02-121-2/+63
* Improve access control diagnostics. Perform access control on member-pointerJohn McCall2010-02-101-2/+16
* Implement C++ DR437, which involves exception-specifications that nameDouglas Gregor2009-12-101-4/+13
* First part of changes to eliminate problems with cv-qualifiers andDouglas Gregor2009-11-161-2/+2
* Have the exception specification checkers take partial diagnostics. Use this ...Sebastian Redl2009-10-141-11/+14
* Use CanQualType in the exception specification verification type sets.Sebastian Redl2009-10-141-3/+3
* Use partial diagnostics properly in call to RequireCompleteType. Among other ...Sebastian Redl2009-10-141-8/+6
* Do exception spec compatibility tests for member pointers, too.Sebastian Redl2009-10-141-0/+5
* Types appearing more than once in a spec shouldn't matter.Sebastian Redl2009-10-111-5/+10