| Commit message (Expand) | Author | Age | Files | Lines |
| * | Call out to GCC-compatible runtime functions for atomic ops that we can't use | David Chisnall | 2012-03-29 | 1 | -34/+61 |
| * | Revert r153613 as it's causing large compile-time regressions on the nightly ... | Chad Rosier | 2012-03-29 | 1 | -9/+10 |
| * | When we can't prove that the target of an aggregate copy is | John McCall | 2012-03-28 | 1 | -10/+9 |
| * | Move the emission of strict enum range metadata behind a flag (the same | Chandler Carruth | 2012-03-27 | 1 | -2/+3 |
| * | Add back r153360 with a fix for enums that cover all the 32 bit values. | Rafael Espindola | 2012-03-24 | 1 | -8/+62 |
| * | Revert r153360 (and r153380), "Second part of PR12251. Produce the range meta... | NAKAMURA Takumi | 2012-03-24 | 1 | -61/+8 |
| * | Second part of PR12251. Produce the range metadata in clang for booleans and | Rafael Espindola | 2012-03-24 | 1 | -8/+61 |
| * | Make sure we correctly set the alignment for vector loads and stores associat... | Eli Friedman | 2012-03-22 | 1 | -14/+27 |
| * | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -10/+10 |
| * | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall | 2012-03-10 | 1 | -23/+18 |
| * | Unify the BlockDeclRefExpr and DeclRefExpr paths so that | John McCall | 2012-03-10 | 1 | -0/+116 |
| * | AST representation for user-defined literals, plus just enough of semantic | Richard Smith | 2012-03-07 | 1 | -0/+1 |
| * | Generate an AST for the conversion from a lambda closure type to a | Douglas Gregor | 2012-02-22 | 1 | -1/+2 |
| * | Fix wrong-code bug: __imag on a scalar lvalue should produce a zero rvalue, | Richard Smith | 2012-02-18 | 1 | -3/+4 |
| * | Whether an argument is required (in contrast with being an | John McCall | 2012-02-17 | 1 | -7/+6 |
| * | Split reinterpret_casts of member pointers out from CK_BitCast; this | John McCall | 2012-02-15 | 1 | -0/+1 |
| * | Use a simpler (and more efficient) pattern to pad vectors. | Benjamin Kramer | 2012-02-14 | 1 | -4/+2 |
| * | Basic support for referring to captured variables from lambdas. Some simple ... | Eli Friedman | 2012-02-11 | 1 | -0/+6 |
| * | Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing. | Eli Friedman | 2012-02-09 | 1 | -46/+1 |
| * | Basic IRGen for LambdaExprs with captures. | Eli Friedman | 2012-02-09 | 1 | -3/+46 |
| * | A little bit of lambda IRGen. | Eli Friedman | 2012-02-08 | 1 | -0/+11 |
| * | simplify a bunch of code to use the well-known LLVM IR types computed by Code... | Chris Lattner | 2012-02-07 | 1 | -2/+1 |
| * | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -1/+1 |
| * | Simplify code by using the new getAggregateElement method that got added | Chris Lattner | 2012-01-30 | 1 | -10/+4 |
| * | Use function pointers, rather than references, to pass Destroyers | Peter Collingbourne | 2012-01-26 | 1 | -7/+3 |
| * | Fixup r148926, for -Asserts. | NAKAMURA Takumi | 2012-01-25 | 1 | -1/+1 |
| * | reapply r148902: | Chris Lattner | 2012-01-25 | 1 | -19/+11 |
| * | Fix a crash for an edge case of the GNU ?: extension. | Eli Friedman | 2012-01-25 | 1 | -2/+2 |
| * | Revert 148902 which was part of 148901 which was reverted in r148906. | Argyrios Kyrtzidis | 2012-01-25 | 1 | -11/+19 |
| * | use the new ConstantVector::getSplat method where it makes sense. | Chris Lattner | 2012-01-25 | 1 | -19/+11 |
| * | Add an assertion that our use-marking actually covers all uses of a variable.... | Eli Friedman | 2012-01-21 | 1 | -0/+7 |
| * | More dead code removal (using -Wunreachable-code) | David Blaikie | 2012-01-20 | 1 | -4/+0 |
| * | Some improvements to the handling of C11 atomic types: | David Chisnall | 2012-01-16 | 1 | -6/+31 |
| * | implement rdar://10639962 by keeping track of increased alignment | Chris Lattner | 2012-01-04 | 1 | -1/+5 |
| * | Fix PR5279 - don't sliently drop alignment information on stores of types tha... | Chris Lattner | 2011-12-19 | 1 | -1/+1 |
| * | Switch LValue so that it exposes alignment in CharUnits. (No functional chan... | Eli Friedman | 2011-12-03 | 1 | -18/+17 |
| * | Switch the Alignment argument on AggValueSlot over to CharUnits, per John's r... | Eli Friedman | 2011-12-03 | 1 | -4/+2 |
| * | Track alignment in AggValueSlot. No functional change in this patch, but I'l... | Eli Friedman | 2011-12-03 | 1 | -6/+11 |
| * | Don't use a varargs convention for calls unprototyped functions where one of ... | Eli Friedman | 2011-12-01 | 1 | -1/+1 |
| * | When destroying temporaries, instead of a custom cleanup use the | Peter Collingbourne | 2011-11-27 | 1 | -1/+1 |
| * | Reference initialization with initializer lists. | Sebastian Redl | 2011-11-27 | 1 | -1/+12 |
| * | Use static storage duration for file-scope compound literals, even when they | Richard Smith | 2011-11-22 | 1 | -0/+5 |
| * | Fix a bunch of really nasty bugs in how we compute alignment for reference lv... | Eli Friedman | 2011-11-16 | 1 | -14/+28 |
| * | Enter the cleanups for a block outside the enclosing | John McCall | 2011-11-10 | 1 | -4/+11 |
| * | Bind function "r-values" as l-values when emitting them as | John McCall | 2011-11-08 | 1 | -1/+1 |
| * | Rip out CK_GetObjCProperty. | John McCall | 2011-11-07 | 1 | -2/+0 |
| * | Rip the ObjCPropertyRef l-value kind out of IR-generation. | John McCall | 2011-11-07 | 1 | -35/+8 |
| * | Change the AST representation of operations on Objective-C | John McCall | 2011-11-06 | 1 | -0/+85 |
| * | back out changes in r143399 and r143475. | Fariborz Jahanian | 2011-11-02 | 1 | -3/+1 |
| * | Adds IRGen support for captured rvalue references in blocks. | Fariborz Jahanian | 2011-10-31 | 1 | -1/+3 |