Age | Commit message (Expand) | Author |
2009-08-10 | Revert r78535, it is causing a number of failures to build projects. | Daniel Dunbar |
2009-08-09 | warn, as gcc does, if __attribute__((malloc)) applied to function returning n... | Ryan Flynn |
2009-08-09 | map previously ignored __attribute((malloc)) to noalias attribute of llvm fun... | Ryan Flynn |
2009-08-09 | Improve handling of member pointers. | Anders Carlsson |
2009-08-09 | AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); | Nate Begeman |
2009-08-08 | Older GCCs don't have vector::data(). | Benjamin Kramer |
2009-08-08 | ir-gen for initialization, in synthesize copy constructor, | Fariborz Jahanian |
2009-08-08 | Add support for global initializers. | Anders Carlsson |
2009-08-08 | Refactor some code and implement support for global destructors for static va... | Anders Carlsson |
2009-08-08 | Use CastExpr::CK_ArrayToPointerDecay and fix an assert. | Anders Carlsson |
2009-08-08 | Take #pragma pack into account when laying out structs. Fixes rdar://problem/... | Anders Carlsson |
2009-08-08 | Refactoring of copy ctor ir-gen. No change in functionality. | Fariborz Jahanian |
2009-08-08 | PR4700 - remove shift by 0 warning | Ryan Flynn |
2009-08-08 | Introduce a new PragmaPack attribute, and use it for #pragma pack. The Packed... | Anders Carlsson |
2009-08-08 | Assert that the LLVM type has the same size as the RecordDecl size. | Anders Carlsson |
2009-08-08 | getFunctionLevelDeclContext needs to get the previous DeclContext if EnterDec... | Anders Carlsson |
2009-08-08 | Factor some code to get the "function level" DeclContext out into a separate ... | Anders Carlsson |
2009-08-08 | Make sure to diagnose use of declarations in the case where we create an impl... | Anders Carlsson |
2009-08-08 | Patch should implement packed enums - PR4098. Credit to Anders Johnsen. | Edward O'Callaghan |
2009-08-08 | Get rid of Stmt::Clone now that we can reference count statements instead. | Anders Carlsson |
2009-08-08 | Introduce reference counting for statements and expressions, using it | Douglas Gregor |
2009-08-08 | Remove use of uninitized variable. | Fariborz Jahanian |
2009-08-08 | Synthesize copying of non-static data members with | Fariborz Jahanian |
2009-08-07 | Synthesized copy constructor now generates code for | Fariborz Jahanian |
2009-08-07 | Add a CK_ArrayToPointerDecay cast kind. | Anders Carlsson |
2009-08-07 | Add CK_ToUnion and use it for aggregate expression codegen. | Anders Carlsson |
2009-08-07 | More CastKind work. | Anders Carlsson |
2009-08-07 | Just add global scope to the associated namespaces set instead of tracking it | John McCall |
2009-08-07 | Add vbase offsets to the vtable. Wow, having an rbegin was so | Mike Stump |
2009-08-07 | Fix: <rdar://problem/7075531> static analyzer wrongly detects unused ivars us... | Ted Kremenek |
2009-08-07 | Constify some pointers. No functionality change. | Ted Kremenek |
2009-08-07 | More synthesis of copy constructors. Work in progress. | Fariborz Jahanian |
2009-08-07 | Fix typo. | Mike Stump |
2009-08-07 | Add ability to generate vcall offsets for primary virtual base. | Mike Stump |
2009-08-07 | Use the correct cast kind as suggested by Doug. | Anders Carlsson |
2009-08-07 | Fix some const_cast issues. This is the beginning of the rabbit hole. | Mike Stump |
2009-08-07 | PR3333: warn when shifting by invalid amount | Ryan Flynn |
2009-08-07 | Separate Stmt::Destroy into the entrypoint for destroying a statement | Douglas Gregor |
2009-08-07 | add support for opensuse 11.1/11.2 search paths, patch by Stefan Reinauer | Chris Lattner |
2009-08-06 | Add support for vcall generation for vtables for virtual bases. WIP. | Mike Stump |
2009-08-06 | Patch toward synthesizing copy constructors. | Fariborz Jahanian |
2009-08-06 | Fix a few more false positives involving RegionStore and unions, but this time | Ted Kremenek |
2009-08-06 | Minor refactoring to introduce a new transformation function, | Douglas Gregor |
2009-08-06 | Also generate the rtti field for virtual bases for vtables. Turn on | Mike Stump |
2009-08-06 | Fix a couple false positive "uninitialized value" warnings with RegionStore | Ted Kremenek |
2009-08-06 | Drop the friend-inner-class diagnostic from an extwarn to an ext and don't | John McCall |
2009-08-06 | Permit a class to friend its members in C++0x, without restriction. | John McCall |
2009-08-06 | Set and use Elidable in elimination of copy ctors. | Fariborz Jahanian |
2009-08-06 | Layout the primary base first in the vtable. | Mike Stump |
2009-08-06 | After reporting ill-formed copy constructor(12.8.p3) | Fariborz Jahanian |