- cda9c67 Adopt a more principled approach to invalid declarations: by Douglas Gregor · 16 years ago
- 553905d add support for deprecated objc ivars. by Chris Lattner · 16 years ago
- cfdff38 Add support for deprecated members of RecordDecls (e.g. struct fields). by Chris Lattner · 16 years ago
- 9af5e67 Untabify. by Ben Laurie · 16 years ago
- b104b1f Don't allow taking the address of an element in an ext_vector by Nate Begeman · 16 years ago
- 8e9dcb7 lots of trailing whitespace by Chris Lattner · 16 years ago
- 76a642f Refactor the deprecated and unavailable checks into a new by Chris Lattner · 16 years ago
- 1251bb8 implement support for attribute(unavailable) on objc methods. by Chris Lattner · 16 years ago
- 61a0f17 allow implementations of deprecated functions to use deprecated symbols. by Chris Lattner · 16 years ago
- f244cd7 Add a test case for -ffreestanding that redefines malloc. by Douglas Gregor · 16 years ago
- 3d65864 Add svn:eol-style=native to some files by Cedric Venet · 16 years ago
- 59843ad Add support for deprecated Obj-C methods. The semantics mostly match what gcc has. by Anders Carlsson · 16 years ago
- 3c385e5 Add hook to add attributes to function declarations that we know by Douglas Gregor · 16 years ago
- ff975cf Pass the location of the start of the selector to ActOnClassMessage/ActOnInstanceMessage. by Anders Carlsson · 16 years ago
- 45ce5c3 simplify some code. by Chris Lattner · 16 years ago
- 0db29ec add parser and type checking support for attribute((objc_exception)). by Chris Lattner · 16 years ago
- 026dc96 Several related changes: by Chris Lattner · 16 years ago
- 90e150d reduce nesting. by Chris Lattner · 16 years ago
- 370ab3f Make it possible for builtins to expression FILE* arguments, so that by Douglas Gregor · 16 years ago
- a316e7b Extend builtin "attribute" syntax to include a notation for by Douglas Gregor · 16 years ago
- 3e41d60 Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 16 years ago
- 186204b Warn about attribute used ignored on "extern int a __attribute__((used))". by Daniel Dunbar · 16 years ago
- 56cd21b If x is an invalid field decl, don't construct an expression for P->x, by Chris Lattner · 16 years ago
- b805dad Sema/AST support for attribute used. Patch by Anders Johnson (with small tweaks & test case)! by Daniel Dunbar · 16 years ago
- 9653db7 Remove DeclGroupOwningRef, since we intend for declarations to be owned by Douglas Gregor · 16 years ago
- b235caa Start warning about unknown attributes. by Anders Carlsson · 16 years ago
- 05f8e47 Add a new Ignored attribute type, and use it for may_alias. by Anders Carlsson · 16 years ago
- e896d98 Add CodeGen support for the nodebug attribute. by Anders Carlsson · 16 years ago
- d87df37 Add sema support for the nodebug attribute. by Anders Carlsson · 16 years ago
- f98aba3 Initial implementation of arbitrary fixed-width integer types. by Eli Friedman · 16 years ago
- ae17094 Tighten checking of the "overloadable" attribute. If any function by a by Douglas Gregor · 16 years ago
- 1fd0361 Fix <rdar://problem/6499801> clang does not detect objc type mismatch in conditional expr by Steve Naroff · 16 years ago
- dfb5e59 Fix a bug with designated initializers where we were stepping out of a by Douglas Gregor · 16 years ago
- 4ab2414 Sema::ActOnObjCAtThrowStmt(): return from recently added errors. Thanks Chris! by Steve Naroff · 16 years ago
- 389bf46 Several cleanups: by Steve Naroff · 16 years ago
- 17f194f Support __attribute__(section(<name>)) by Daniel Dunbar · 16 years ago
- 3dcfe10 Turn warning into error. Minor incompatibility with GCC (for scalar types, GCC only produces a warning). by Steve Naroff · 16 years ago
- b7b5d13 Expand the definition of a complex promotion to include complex -> by Douglas Gregor · 16 years ago
- 5cdf821 Introduce _Complex conversions into the function overloading by Douglas Gregor · 16 years ago
- 1a35fde Fix comment. by Mike Stump · 16 years ago
- f9201e0 Initial implementation of function overloading in C. by Douglas Gregor · 16 years ago
- 1bc6913 Appease the language lawyers by Douglas Gregor · 16 years ago
- e21dd6f Fix <rdar://problem/6243503> [sema] @throw; accepted outside catch block. by Steve Naroff · 16 years ago
- cc45cb3 Finished semantic analysis of non-type template arguments, to check by Douglas Gregor · 16 years ago
- 5fa77e9 Avoid bogus warning. by Mike Stump · 16 years ago
- 8e6563b Reverted r64307. Moved hasSameType and hasSameUnqualifiedType from by Douglas Gregor · 16 years ago
- 62cb18d Allow the use of default template arguments when forming a class by Douglas Gregor · 16 years ago
- 7151bbb Fix <rdar://problem/6206858> [sema] type check @throw statements. by Steve Naroff · 16 years ago
- 26a0bdb Rename Sema::hasSameType to QualType::isSameAs by Douglas Gregor · 16 years ago
- 658bbb5 Implement semantic checking for template arguments that correspond to by Douglas Gregor · 16 years ago
- b86b057 Add semantic checking for template arguments that correspond to by Douglas Gregor · 16 years ago
- f684e6e Semantic checking for template arguments that correspond to non-type by Douglas Gregor · 16 years ago
- a35284b Add partial semantic checking of template arguments that are meant for by Douglas Gregor · 16 years ago
- 6ae5e66 Add type-checking and implicit conversions for template parameters of by Douglas Gregor · 16 years ago
- 0bfe54f GNU allows structs with flexible array members to be placed inside by Douglas Gregor · 16 years ago
- d684b00 Implement parsing, semantic analysis and ASTs for default template by Douglas Gregor · 16 years ago
- 5d290d5 Semantic analysis for non-type template parameter declarations. by Douglas Gregor · 16 years ago
- 8b64259 Teach the type-id/expression disambiguator about different by Douglas Gregor · 16 years ago
- dd0574e Check template template arguments against their corresponding template by Douglas Gregor · 16 years ago
- c15cb38 Rudimentary checking of template arguments against their corresponding by Douglas Gregor · 16 years ago
- 668bf91 CallExpr now uses ASTContext's allocate to allocate/delete its array of subexpressions. by Ted Kremenek · 16 years ago
- fdf5569 When handling "the rest" of a designated array subobject, maybe sure by Douglas Gregor · 16 years ago
- 5908e9f Eliminate TemplateArg so that we only have a single kind of by Douglas Gregor · 16 years ago
- 55f6b14 Start processing template-ids as types when the template-name refers by Douglas Gregor · 16 years ago
- 00e68e2 Update new expression to make use of Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
- ab197ba Implement Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
- fb7413f Allocate the subexpression array for OberloadExpr from ASTContext's allocator. by Ted Kremenek · 16 years ago
- 1a51b4a Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 16 years ago
- 00d5074 Fix redundant errors with missing default arguments in member declarations. by Sebastian Redl · 16 years ago
- 89ef6e0 Fix redundant errors for redefinitions with multiple existing definitions. by Sebastian Redl · 16 years ago
- 89941c1 Improve Sema of the cleanup attribute somewhat. by Anders Carlsson · 16 years ago
- 7c8bd60 Move CheckPointerToMemberOperands to SemaExprCXX.cpp by Sebastian Redl · 16 years ago
- 169a266 Use 'Destroy(Context)' instead of 'Context.Deallocate()' (does recursive freeing of memory). by Ted Kremenek · 16 years ago
- 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
- 7878ffd Add negative test cases and fix diagnostics for member pointer dereferencing. by Sebastian Redl · 16 years ago
- 2246050 Implement dereferencing of pointers-to-member. by Sebastian Redl · 16 years ago
- 4b99bae Clean up an already-fixed FIXME by Douglas Gregor · 16 years ago
- ddc29e1 Semantic checking for class template declarations and by Douglas Gregor · 16 years ago
- 6e94ef5 Move StringLiteral to allocate its internal string data using the allocator in by Ted Kremenek · 16 years ago
- 4ce205f Diagnose attempts to define a namespace member out-of-line when no by Douglas Gregor · 16 years ago
- 7dda67d Improvements and fixes for name lookup with using directives, from Piotr Rak! by Douglas Gregor · 16 years ago
- 0defd76 Remove some non-ASCII in comment. by Sebastian Redl · 16 years ago
- eeb15d4 Implement semantic analysis for the GNU flexible array initialization by Douglas Gregor · 16 years ago
- 98eb8a7 Add support for blocks with explicit return types. by Mike Stump · 16 years ago
- 33b399a Implement taking address of member functions, including overloaded ones. by Sebastian Redl · 16 years ago
- d6efafa Improve documentation for Sema::getTypeName. Also, it's return type is by Douglas Gregor · 16 years ago
- aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 16 years ago
- 47b9a1c Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 16 years ago
- 818cb9e Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate' as different kind of symbol. by Steve Naroff · 16 years ago
- b696ea3 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 16 years ago
- f680a0f Bring operator name lookup (as required for C++ operator overloading) by Douglas Gregor · 16 years ago
- 1733001 Fix our semantic analysis of by Douglas Gregor · 16 years ago
- fa04764 Initial implementation of argument dependent lookup (a.k.a. ADL, by Douglas Gregor · 16 years ago
- 48458d2 silence some warnings. by Chris Lattner · 16 years ago
- ebc07d5 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 16 years ago
- e2c565d When looking for a tag name via unqualified name lookup, only look in by Douglas Gregor · 16 years ago
- 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 16 years ago
- 1931b44 Simplify the way in which we inject the names of tag definitions and by Douglas Gregor · 16 years ago
- 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 16 years ago
- ff77645 emit diagnostic when casting a ptr to a small int when doing static initialization (addresses Eli's comments I believe) by Nuno Lopes · 16 years ago