Age | Commit message (Expand) | Author |
2012-08-08 | Fix an assertion failure with a C++ constructor initializing a | Eli Friedman |
2012-07-15 | Update Clang to reflect the move of MDBuilder in r160237. | Chandler Carruth |
2012-07-07 | Distinguish more carefully between free functions and C++ instance methods | John McCall |
2012-07-03 | Silence warning in -Asserts build | Matt Beaumont-Gay |
2012-07-03 | Share ConvertUTF8toWide() between Lex and CodeGen. | Nico Weber |
2012-07-02 | Significantly simplify CGExprAgg's logic about ignored results: | John McCall |
2012-06-27 | Propagate lvalue alignment into bitfields. Per report on cfe-dev. | Eli Friedman |
2012-06-23 | Support L__FUNCTION__ in microsoft mode, PR11789 | Nico Weber |
2012-06-15 | Make the ".*" operator work correctly when the base is a prvalue and the fiel... | Eli Friedman |
2012-06-07 | User better API for vla in compund literals. | Fariborz Jahanian |
2012-06-07 | When emitting compund literal of vla pointer elements, make | Fariborz Jahanian |
2012-05-22 | wire -fbounds-checking to the new LLVM bounds checking pass | Nuno Lopes |
2012-05-22 | revert the usage of the objectsize intrinsic with 3 parameters (to match LLVM... | Nuno Lopes |
2012-05-14 | Implement IRGen for C++11's "T{1, 2, 3}", where T is an aggregate and the | Richard Smith |
2012-05-09 | update calls to objectsize intrinsic to match LLVM r156473 | Nuno Lopes |
2012-05-08 | add -fbounds-checking option. | Nuno Lopes |
2012-05-07 | remove code to add bound checks for simple array accesses, since those are al... | Nuno Lopes |
2012-05-01 | Push variable declaration into nested scope (the only place where it is used)... | Ted Kremenek |
2012-05-01 | Abstract the emission of global destructors into ABI-specific code | John McCall |
2012-04-16 | Adjust for LLVM name tweaks requested by Chandler. | Duncan Sands |
2012-04-16 | Propagate alignment on lvalues through EmitLValueForField. PR12395. | Eli Friedman |
2012-04-15 | Use MDBuilder to help with metadata creation. | Duncan Sands |
2012-04-14 | Rename "fpaccuracy" metadata to the more generic "fpmath". That's because I'm | Duncan Sands |
2012-04-13 | Step forward with supporting of ARM homogenous aggregates: | Anton Korobeynikov |
2012-04-13 | Implement __atomic_fetch_nand and __atomic_nand_fetch to complete our set of | Richard Smith |
2012-04-13 | Implement the missing pieces needed to support libstdc++4.7's <atomic>: | Richard Smith |
2012-04-12 | Fix some i1/i8 confusion within _Atomic(bool) in IR generation, both | Douglas Gregor |
2012-04-12 | Implement support for 18 of the GNU-compatible __atomic builtins. | Richard Smith |
2012-04-11 | Make __atomic_init() (soon to be __c11_atomic_init()) work with non-scalar ty... | David Chisnall |
2012-04-10 | Express the number of ULPs in fpaccuracy metadata as a real rather than a | Duncan Sands |
2012-03-29 | Call out to GCC-compatible runtime functions for atomic ops that we can't use | David Chisnall |
2012-03-29 | Revert r153613 as it's causing large compile-time regressions on the nightly ... | Chad Rosier |
2012-03-28 | When we can't prove that the target of an aggregate copy is | John McCall |
2012-03-27 | Move the emission of strict enum range metadata behind a flag (the same | Chandler Carruth |
2012-03-24 | Add back r153360 with a fix for enums that cover all the 32 bit values. | Rafael Espindola |
2012-03-24 | Revert r153360 (and r153380), "Second part of PR12251. Produce the range meta... | NAKAMURA Takumi |
2012-03-24 | Second part of PR12251. Produce the range metadata in clang for booleans and | Rafael Espindola |
2012-03-22 | Make sure we correctly set the alignment for vector loads and stores associat... | Eli Friedman |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-10 | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall |
2012-03-10 | Unify the BlockDeclRefExpr and DeclRefExpr paths so that | John McCall |
2012-03-07 | AST representation for user-defined literals, plus just enough of semantic | Richard Smith |
2012-02-22 | Generate an AST for the conversion from a lambda closure type to a | Douglas Gregor |
2012-02-18 | Fix wrong-code bug: __imag on a scalar lvalue should produce a zero rvalue, | Richard Smith |
2012-02-17 | Whether an argument is required (in contrast with being an | John McCall |
2012-02-15 | Split reinterpret_casts of member pointers out from CK_BitCast; this | John McCall |
2012-02-14 | Use a simpler (and more efficient) pattern to pad vectors. | Benjamin Kramer |
2012-02-11 | Basic support for referring to captured variables from lambdas. Some simple ... | Eli Friedman |
2012-02-09 | Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing. | Eli Friedman |
2012-02-09 | Basic IRGen for LambdaExprs with captures. | Eli Friedman |