| Commit message (Expand) | Author | Age | Files | Lines |
* | Use '-FOO' 'BAR' instead of '-FOO=BAR' for FOO in -stack-protector, -fvisibil... | Daniel Dunbar | 2009-11-29 | 5 | -9/+9 |
* | Normalize options to use '-FOO' instead of '--FOO'. | Daniel Dunbar | 2009-11-29 | 45 | -73/+73 |
* | Remove unnecessary -fblocks=0. | Daniel Dunbar | 2009-11-29 | 2 | -2/+2 |
* | Use '-x' 'foo' instead of '-x=foo'. | Daniel Dunbar | 2009-11-29 | 7 | -15/+15 |
* | Use '-o' '-' instead of '-o=-' in tests. | Daniel Dunbar | 2009-11-29 | 25 | -25/+25 |
* | Remove unnecessary -fms-extensions=0 from tests (this command line syntax is ... | Daniel Dunbar | 2009-11-29 | 8 | -9/+9 |
* | Add DeclarationName support for C++0x operator literals. They should now work as | Alexis Hunt | 2009-11-29 | 1 | -2/+2 |
* | Move LLVM backend options to explicit clang-cc / clang -cc1 options, which we... | Daniel Dunbar | 2009-11-29 | 1 | -5/+5 |
* | clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level us... | Daniel Dunbar | 2009-11-29 | 1 | -4/+4 |
* | cleanup parsing of MS integer suffixes a little. this fixes PR5616 | Nuno Lopes | 2009-11-28 | 1 | -0/+12 |
* | Fix test and handle IK_LiteralOperatorId in a few more places. | Alexis Hunt | 2009-11-28 | 1 | -1/+1 |
* | Add Parser support for C++0x literal operators ('operator "" i'). | Alexis Hunt | 2009-11-28 | 1 | -0/+5 |
* | Add a much more thorough test of casts to virtual bases, and fix | Eli Friedman | 2009-11-28 | 1 | -7/+31 |
* | Some member pointer casting tests. | Eli Friedman | 2009-11-27 | 2 | -0/+26 |
* | Fix for PR5594: use EmitGlobalDefinition instead of EmitCXXDestructor so that | Eli Friedman | 2009-11-27 | 1 | -0/+9 |
* | Simplify and fix up the handling of implicit constructors, copy assignment | Eli Friedman | 2009-11-26 | 1 | -0/+4 |
* | Improve diagnostics in ReturnStackAddressChecker for returning a stack-alloca... | Ted Kremenek | 2009-11-26 | 1 | -2/+15 |
* | Add test case that shows that dead stores checking now works in the presence ... | Ted Kremenek | 2009-11-26 | 1 | -5/+21 |
* | Implement IRGen for MemberExpr referring to static member function. | Eli Friedman | 2009-11-26 | 1 | -0/+8 |
* | Slight tweak to the algorithm for getLinkage(). | Eli Friedman | 2009-11-26 | 1 | -0/+5 |
* | Use new getLinkage() method to correctly compute whether a variable has | Eli Friedman | 2009-11-26 | 1 | -0/+8 |
* | Add a PostVisitBlockExpr() method to RetainReleaseChecker to query for | Ted Kremenek | 2009-11-26 | 1 | -2/+0 |
* | Refactor our handling of expression evaluation contexts, so that Sema | Douglas Gregor | 2009-11-26 | 1 | -1/+35 |
* | Allow user re-definition of SEL as well as accessing its fields. | Fariborz Jahanian | 2009-11-25 | 1 | -0/+4 |
* | Fix attribute between function decl ')' and '{' or '=0' | John Thompson | 2009-11-25 | 2 | -0/+10 |
* | Implement the rules in C++ [basic.link] and C99 6.2.2 for computing | Douglas Gregor | 2009-11-25 | 3 | -1/+20 |
* | Tweak expected error to match what should happen, once using declarations work | Douglas Gregor | 2009-11-25 | 1 | -3/+2 |
* | Tweak expected error message, although we still fail this test | Douglas Gregor | 2009-11-25 | 1 | -1/+1 |
* | Implement support for default template arguments of function templates. | Douglas Gregor | 2009-11-25 | 2 | -1/+27 |
* | Diagnose ill-formed uses of default template arguments in | Douglas Gregor | 2009-11-25 | 1 | -0/+23 |
* | When the condition of a switch() statement is semantically invalid, | Douglas Gregor | 2009-11-25 | 1 | -1/+11 |
* | Parse C++ member check attributes - base_check, hiding, and override. | Alexis Hunt | 2009-11-25 | 1 | -0/+12 |
* | Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used y... | Anders Carlsson | 2009-11-25 | 1 | -0/+17 |
* | Implement proper cleanup semantics for condition variables in for | Douglas Gregor | 2009-11-25 | 1 | -1/+6 |
* | Add really basic support for blocks in the retain/release checker. For now, ... | Ted Kremenek | 2009-11-25 | 1 | -2/+35 |
* | Tweak the code-generation-for-condition-variables test case to get to what we... | Douglas Gregor | 2009-11-25 | 1 | -3/+3 |
* | Eliminate CXXConditionDeclExpr with extreme prejudice. | Douglas Gregor | 2009-11-25 | 2 | -0/+22 |
* | Have the parser tell sema whether a member declaration is a function definiti... | Sebastian Redl | 2009-11-24 | 1 | -3/+2 |
* | Convert test case to FileCheck to test the behavior of the nil-receiver check... | Ted Kremenek | 2009-11-24 | 1 | -2/+16 |
* | For the nil-receiver checker, take into account the behavioral changes that g... | Ted Kremenek | 2009-11-24 | 1 | -2/+2 |
* | Cleanups and fixes to the nil-receiver checker, some of it fallout the | Ted Kremenek | 2009-11-24 | 2 | -6/+6 |
* | "Do" loops cannot have condition variables, so don't parse them. | Douglas Gregor | 2009-11-24 | 1 | -3/+0 |
* | Clean up the AST for while loops and fix several problems with | Douglas Gregor | 2009-11-24 | 1 | -0/+20 |
* | Handle references correctly when synthesizing copy constructors. | Anders Carlsson | 2009-11-24 | 1 | -0/+11 |
* | Fix some major problems dealing with dependently-qualified names in implicit | John McCall | 2009-11-24 | 1 | -0/+70 |
* | Fix the test case failed in buildbot. | Fariborz Jahanian | 2009-11-24 | 1 | -1/+1 |
* | Handle cases where we're constructing an array of objects and the constructor... | Anders Carlsson | 2009-11-24 | 1 | -1/+57 |
* | Refactor collection of call arguments in common code. | Fariborz Jahanian | 2009-11-24 | 1 | -0/+11 |
* | GNUNullExpr is a valid sentinel even though it isn't of pointer type. | Anders Carlsson | 2009-11-24 | 1 | -0/+6 |
* | Make sure redeclaration chains are properly linked, even through invalid decl... | Sebastian Redl | 2009-11-24 | 1 | -0/+9 |