| Commit message (Expand) | Author | Age | Files | Lines |
* | Delete dead code. | Eli Friedman | 2013-06-28 | 1 | -39/+16 |
* | Emit initializers for static-storage-duration temporaries as constants where | Richard Smith | 2013-06-14 | 1 | -1/+17 |
* | Simplify: we don't need any special-case lifetime extension when initializing | Richard Smith | 2013-06-12 | 1 | -52/+29 |
* | PR12086, PR15117 | Richard Smith | 2013-06-12 | 1 | -9/+0 |
* | Reapply r183721, reverted in r183776, with a fix for a bug in the former (we | Richard Smith | 2013-06-12 | 1 | -266/+199 |
* | Revert r183721. It caused cleanups to be delayed too long in some cases. | Richard Smith | 2013-06-11 | 1 | -199/+266 |
* | Silence GCC warning. | Benjamin Kramer | 2013-06-11 | 1 | -0/+1 |
* | Rework IR emission for lifetime-extended temporaries. Instead of trying to walk | Richard Smith | 2013-06-11 | 1 | -266/+198 |
* | Remove some unreachable (and wrong) code and replace it with an assertion. | Richard Smith | 2013-06-04 | 1 | -13/+3 |
* | Fix handling of pointers-to-members and comma expressions when | Richard Smith | 2013-06-03 | 1 | -1/+10 |
* | CodeGen for CapturedStmts | Ben Langmuir | 2013-05-09 | 1 | -4/+12 |
* | Correctly emit certain implicit references to 'self' even within | John McCall | 2013-05-03 | 1 | -0/+11 |
* | Struct-path aware TBAA: fix handling of may_alias attribute. | Manman Ren | 2013-04-27 | 1 | -2/+2 |
* | C++1y: Allow aggregates to have default initializers. | Richard Smith | 2013-04-20 | 1 | -0/+4 |
* | Implement CodeGen for C++11 thread_local, following the Itanium ABI specifica... | Richard Smith | 2013-04-19 | 1 | -1/+5 |
* | CodeGen support for function-local static thread_local variables with | Richard Smith | 2013-04-14 | 1 | -3/+10 |
* | Annotate flavor of TLS variable (statically or dynamically initialized) onto ... | Richard Smith | 2013-04-13 | 1 | -1/+1 |
* | Struct-path aware TBAA: uniformize scalar tag and path tag. | Manman Ren | 2013-04-11 | 1 | -2/+2 |
* | Force a load when creating a reference to a temporary copied from a bitfield. | Jordan Rose | 2013-04-11 | 1 | -129/+124 |
* | <rdar://problem/13325066> Destroy std::initializer_list temporaries whose lif... | Douglas Gregor | 2013-04-06 | 1 | -4/+20 |
* | Initial support for struct-path aware TBAA. | Manman Ren | 2013-04-04 | 1 | -8/+34 |
* | revert r178784 since it does not have a commit message | Manman Ren | 2013-04-04 | 1 | -34/+8 |
* | Index: include/clang/Driver/CC1Options.td | Manman Ren | 2013-04-04 | 1 | -8/+34 |
* | ubsan: Pass floating-point arguments to the runtime by value if they fit the | Richard Smith | 2013-03-22 | 1 | -1/+10 |
* | Force column info only for direct inlined functions. This should strike | Adrian Prantl | 2013-03-15 | 1 | -3/+5 |
* | Tighten up the rules for precise lifetime and document | John McCall | 2013-03-13 | 1 | -5/+11 |
* | Force column info to be generated for call expressions so we can | Adrian Prantl | 2013-03-12 | 1 | -2/+6 |
* | Make helper function static. | Benjamin Kramer | 2013-03-09 | 1 | -2/+2 |
* | Promote atomic type sizes up to a power of two, capped by | John McCall | 2013-03-07 | 1 | -5/+17 |
* | Move the atomics code into its own file. | John McCall | 2013-03-07 | 1 | -463/+0 |
* | Change hasAggregateLLVMType, which conflates complex and | John McCall | 2013-03-07 | 1 | -70/+94 |
* | Use the actual ABI-determined C calling convention for runtime | John McCall | 2013-02-28 | 1 | -3/+2 |
* | PR15338: Don't assert if -fsanitize=bounds sees array indexing on an incomplete | Richard Smith | 2013-02-24 | 1 | -1/+3 |
* | ubsan: Emit bounds checks for array indexing, vector indexing, and (in really... | Richard Smith | 2013-02-23 | 1 | -3/+94 |
* | ubsan: Add checking for invalid downcasts. Per [expr.static.cast]p2 and p11, | Richard Smith | 2013-02-13 | 1 | -2/+25 |
* | Don't forget to run destructors when we create an array temporary of class type. | Richard Smith | 2013-02-02 | 1 | -8/+22 |
* | Make sure that the Attribute object represents one attribute only. | Bill Wendling | 2013-01-31 | 1 | -1/+3 |
* | Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support | Dmitri Gribenko | 2013-01-30 | 1 | -1/+2 |
* | [ubsan] Implement the -fcatch-undefined-behavior flag using a trapping | Chad Rosier | 2013-01-29 | 1 | -1/+8 |
* | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei | 2013-01-20 | 1 | -0/+2 |
* | [ubsan] Add support for -fsanitize-blacklist | Will Dietz | 2013-01-18 | 1 | -6/+7 |
* | Avoid unsigned Compare to int | David Greene | 2013-01-15 | 1 | -1/+1 |
* | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko | 2013-01-12 | 1 | -9/+9 |
* | Don't assert in codegen on static data members which have NoLinkage. Fixes | Nick Lewycky | 2013-01-10 | 1 | -4/+2 |
* | [ubsan] Make static check data non-const so it can be used for deduplication. | Will Dietz | 2013-01-09 | 1 | -1/+1 |
* | Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to | Chandler Carruth | 2013-01-02 | 1 | -4/+4 |
* | Don't eagerly emit a global static merged with a local extern. | Rafael Espindola | 2012-12-21 | 1 | -3/+2 |
* | Rename llvm::Attributes to llvm::Attribute. | Bill Wendling | 2012-12-20 | 1 | -4/+4 |
* | Revert r170500. It over-zealously converted *ALL* things named Attributes, wh... | Bill Wendling | 2012-12-20 | 1 | -4/+4 |
* | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 2012-12-19 | 1 | -4/+4 |