aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic
AgeCommit message (Expand)Author
2009-08-03Per advice that Doug Gregor gave me several months ago, clean up theTed Kremenek
2009-08-03Tweak diagnostic wording; patch by Sean Hunt.Eli Friedman
2009-08-02Produce a warning that partial ordering of function templates is not yet supp...Douglas Gregor
2009-07-31Add beginnigs of rtti generation, wire up more of -fno-exceptions.Mike Stump
2009-07-31sp.John McCall
2009-07-30Support out-of-line definitions of the members of class templateDouglas Gregor
2009-07-30PR3679 - handle #pragma weakRyan Flynn
2009-07-30Add support for -Wno-long-long.Eli Friedman
2009-07-29Check for identical types in C++ catch expression. Patch by Erik Verbruggen.Sebastian Redl
2009-07-28Add support for -Wmissing-noreturn.Mike Stump
2009-07-28Add noreturn support for blocks.Mike Stump
2009-07-28Bounds checking for address spaces.John McCall
2009-07-28Make longjmp a real builtin.Mike Stump
2009-07-28Make sure to move the comment with the code.Mike Stump
2009-07-27Add noreturn for exit.Mike Stump
2009-07-27Fix typo in error messageDouglas Gregor
2009-07-25PR3575 - warn on declared variable or function attributes after a definition,...Ryan Flynn
2009-07-25Implement C++ semantics for C-style and functional-style casts. This regresse...Sebastian Redl
2009-07-25Semantic checking for main().John McCall
2009-07-24Template instantiation for static data members that are defined out-of-line.Douglas Gregor
2009-07-24More Sema check for constructor's member initializer along Fariborz Jahanian
2009-07-24Implement new warning for functions declared 'noreturn' when they fall off th...Mike Stump
2009-07-23Diagnose when base classes and members to be intializedFariborz Jahanian
2009-07-22Add warning for falling off the end of a function that should return aMike Stump
2009-07-22Implement support for out-of-line definitions of the class members of classDouglas Gregor
2009-07-22Make -Wreturn-type be part of -Wmost and therefore -Wall.Mike Stump
2009-07-22"This patch implements the restrictions on union members detailed inDouglas Gregor
2009-07-22Implement parsing and semantic analysis for out-of-line definitions of staticDouglas Gregor
2009-07-22Fix <rdar://problem/6770276> Support Class<Proto> syntax.Steve Naroff
2009-07-22Complain if we're entering the context of a dependent nested-name-specifier butDouglas Gregor
2009-07-21Basic parsing and semantic analysis for out-of-line definitions of theDouglas Gregor
2009-07-21Diagnose when a destructor uses a unrelated class type as its name.Fariborz Jahanian
2009-07-21- Introduce ASTContext::getObjCImplementation() and ASTContext::setObjCImplem...Argyrios Kyrtzidis
2009-07-20Improve message for bad destructor decl. Per Doug's comment.Fariborz Jahanian
2009-07-20Improve GCC compatibility by allowing static tentative definitions ofDouglas Gregor
2009-07-20Issue a more descriptive diagnostics when mis-declaringFariborz Jahanian
2009-07-19enhance the goto checker to reject jumps across __block variable definitions.Chris Lattner
2009-07-16codegen string literals using private linkage now like llvm-gcc, eliminatingChris Lattner
2009-07-16Generate error on declaration containing 'static' and '__attribute__((weak))'Fariborz Jahanian
2009-07-15Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseu...Steve Naroff
2009-07-14Basic support for C++0x unicode types. Support for literals will follow in a...Alisdair Meredith
2009-07-12add push/pop semantics for diagnostics. Patch by Louis Gerbarg!Chris Lattner
2009-07-11Implement more of C++0x 'auto'. A variable with an auto type specifier must h...Anders Carlsson
2009-07-09don't crash if class is using itself as its super class.Fariborz Jahanian
2009-07-09Sema check on out of order object initialization ofFariborz Jahanian
2009-07-08Implement the simple form of overload resolution used when taking theDouglas Gregor
2009-07-08It's not allowed to form member pointers to members that have reference type....Anders Carlsson
2009-07-08fix PR4513, a build problem with VC++, patch by James Abbatiello!Chris Lattner
2009-07-07Implement checking of exception spec compatibility for overriding virtual fun...Sebastian Redl
2009-07-07Some (most) type trait expressions require that the argument passed in is a c...Anders Carlsson