| Commit message (Expand) | Author | Age | Files | Lines |
* | Unwind path cleanup for array new list initializers. | Sebastian Redl | 2012-02-22 | 2 | -7/+72 |
* | CodeGen for array new list initializers. Doesn't correctly clean up in the fa... | Sebastian Redl | 2012-02-22 | 2 | -27/+102 |
* | Teach overload resolution to prefer user-defined conversion via a | Douglas Gregor | 2012-02-22 | 2 | -0/+79 |
* | Fix parsing and processing initializer lists in return statements and as dire... | Sebastian Redl | 2012-02-22 | 9 | -30/+59 |
* | Warn about non-standard format strings (pr12017) | Hans Wennborg | 2012-02-22 | 9 | -11/+179 |
* | More ArrayRef-ification of methods. | Bill Wendling | 2012-02-22 | 7 | -11/+10 |
* | ArrayRef-icize the function arguments. | Bill Wendling | 2012-02-22 | 4 | -6/+5 |
* | Use an ArrayRef when we can instead of passing in a SmallVectorImpl reference. | Bill Wendling | 2012-02-22 | 4 | -35/+33 |
* | Throw away stray CXXDefaultArgExprs. Fixes PR12061. | Sebastian Redl | 2012-02-22 | 2 | -0/+47 |
* | In -fdelayed-template-parsing mode, reenter every scope when late parsing a t... | Francois Pichet | 2012-02-22 | 2 | -102/+133 |
* | Accept braced-init-lists in conditions, and, in passing, dramatically improve | Richard Smith | 2012-02-22 | 7 | -15/+84 |
* | Make sure null initialization in arrays works correctly with ARC types. <rda... | Eli Friedman | 2012-02-22 | 2 | -2/+19 |
* | Generate an AST for the conversion from a lambda closure type to a | Douglas Gregor | 2012-02-22 | 20 | -46/+114 |
* | Improve diagnostics a bit for bad member initializers, and fix an obscure bug... | Eli Friedman | 2012-02-22 | 4 | -26/+65 |
* | test/CodeGenCXX/thiscall-struct-return.cpp: Relax expressions for -Asserts. | NAKAMURA Takumi | 2012-02-22 | 1 | -3/+3 |
* | [analyzer] Malloc checker: mark 'strdup' and 'strndup' as allocators. | Anna Zaks | 2012-02-22 | 2 | -20/+61 |
* | Adding support for Microsoft's thiscall calling convention. Clang side of th... | Aaron Ballman | 2012-02-22 | 2 | -9/+64 |
* | [analyzer] Malloc: fix another false positive. | Anna Zaks | 2012-02-22 | 2 | -15/+42 |
* | [analyzer] Change naming in bug reports "tainted" -> "untrusted" | Anna Zaks | 2012-02-22 | 2 | -14/+15 |
* | [libclang] Index the field references of a designated initializer, rdar://109... | Argyrios Kyrtzidis | 2012-02-22 | 2 | -0/+22 |
* | Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a | Richard Smith | 2012-02-22 | 10 | -19/+276 |
* | Fix typo correction of template arguments to once again allow type names. | Kaelyn Uhrain | 2012-02-22 | 4 | -4/+20 |
* | Provide a way to disable auto-generation of preprocessed files during clang | Chad Rosier | 2012-02-22 | 2 | -0/+4 |
* | modern objc translator: fixes a bug where a class declaration with not | Fariborz Jahanian | 2012-02-21 | 2 | -10/+18 |
* | objective-c modern translator. accessing ivars using modern abi - wip. | Fariborz Jahanian | 2012-02-21 | 2 | -62/+39 |
* | Make sure Stmt::dump() is included in libclang. | Argyrios Kyrtzidis | 2012-02-21 | 1 | -2/+2 |
* | In the conflict between C++11 [expr.prim.general]p4, which declares | Douglas Gregor | 2012-02-21 | 2 | -2/+15 |
* | Fix a crash in the diangostic code in EvalConstant. PR12043. | Eli Friedman | 2012-02-21 | 2 | -1/+8 |
* | No need to go to object file, -emit-llvm is sufficient to see if clang | Eric Christopher | 2012-02-21 | 1 | -1/+1 |
* | Skip testing the crtbegin.o, and resume using a single variable for the | Chandler Carruth | 2012-02-21 | 1 | -6/+6 |
* | Clean up, add some documentation, and make this test return to checking | Chandler Carruth | 2012-02-21 | 1 | -12/+10 |
* | Don't crash on attempts to synthesize an invalid property. | John McCall | 2012-02-21 | 2 | -0/+10 |
* | Redirect the output to /dev/null. This prevents the output from cluttering | Richard Trieu | 2012-02-21 | 1 | -1/+1 |
* | Only pop the expression evaluation context corresponding to a lambda | Douglas Gregor | 2012-02-21 | 2 | -5/+15 |
* | Don't assume that a valid expression for the first part of a for-statement | Richard Smith | 2012-02-21 | 2 | -2/+12 |
* | When calling a non variadic format function(vprintf, vscanf, NSLogv, …), wa... | Jean-Daniel Dupas | 2012-02-21 | 4 | -18/+104 |
* | Improve our handling of lambda expressions that occur within default | Douglas Gregor | 2012-02-21 | 9 | -19/+85 |
* | Allow linux builds to take advantage of libunwind to get unwind.h if | Jeffrey Yasskin | 2012-02-21 | 1 | -3/+13 |
* | Also mark Type's dump() as 'used' to make it available in libclang. | Argyrios Kyrtzidis | 2012-02-21 | 1 | -1/+1 |
* | Remove comma from end of enum to silence build warning. | Craig Topper | 2012-02-21 | 1 | -1/+1 |
* | Mark a few 'dump' methods as 'used' to make sure they are included in libclang | Argyrios Kyrtzidis | 2012-02-21 | 2 | -4/+5 |
* | Implement non-internal linkage for lambda closure types that need a | Douglas Gregor | 2012-02-21 | 6 | -31/+151 |
* | Add a test case for r150976. | Nico Weber | 2012-02-21 | 1 | -0/+41 |
* | Implement name mangling for lambda expressions that occur within the | Douglas Gregor | 2012-02-21 | 7 | -24/+119 |
* | Adding a test case for the working-directory fix | Aaron Ballman | 2012-02-21 | 1 | -0/+4 |
* | Have ScanReachableSymbols reported reachable regions. Fixes a false positive... | Ted Kremenek | 2012-02-21 | 3 | -1/+27 |
* | Implement name mangling for lambda expressions that occur within the | Douglas Gregor | 2012-02-21 | 15 | -82/+285 |
* | Emit the exact size for the invariant intrinsics. | Nick Lewycky | 2012-02-21 | 2 | -9/+12 |
* | [analyzer] + a couple more malloc tests. | Anna Zaks | 2012-02-21 | 1 | -0/+17 |
* | [analyzer] Make KeyChainAPI checker inlining-aware. | Anna Zaks | 2012-02-21 | 2 | -3/+73 |