| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Warn on top-level 'asm volatile' (instead of misparsing it). | John McCall | 2010-01-25 | 1 | -0/+5 |
* | global variable that binds reference to a non-lvalue reproted | Fariborz Jahanian | 2010-01-25 | 1 | -2/+7 |
* | Fixes a rewriting bug of access ivar of a variable cast | Fariborz Jahanian | 2010-01-25 | 1 | -1/+10 |
* | Fix a code gen. bug involving compiling global references. | Fariborz Jahanian | 2010-01-25 | 1 | -2/+2 |
* | Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugRe... | Ted Kremenek | 2010-01-25 | 28 | -37/+37 |
* | Code simplification; this should have no visible effects. | Eli Friedman | 2010-01-25 | 1 | -33/+2 |
* | Move the type specifier location for elaborated-type-specifiers from | Douglas Gregor | 2010-01-25 | 2 | -3/+9 |
* | Update C++ include paths for Exherbo, by Ingmar Vanhassel. | Benjamin Kramer | 2010-01-25 | 1 | -3/+3 |
* | Add missing file. | Ted Kremenek | 2010-01-25 | 1 | -0/+21 |
* | Split libAnalysis into two libraries: libAnalysis and libChecker. | Ted Kremenek | 2010-01-25 | 75 | -242/+226 |
* | fix rdar://7556129 a crash in blocks debug info codegen. | Chris Lattner | 2010-01-25 | 1 | -2/+3 |
* | simplify code. | Chris Lattner | 2010-01-25 | 2 | -23/+13 |
* | ASTUnit: Don't check that input files exist when parsing ASTs from the command | Daniel Dunbar | 2010-01-25 | 2 | -6/+9 |
* | -fno-rtti is now the default. | Chris Lattner | 2010-01-24 | 11 | -11/+0 |
* | Implement [dcl.fct.spec]p6. | Anders Carlsson | 2010-01-24 | 1 | -0/+22 |
* | Implement instantiation of AsmStmts (Crazy, I know) | Anders Carlsson | 2010-01-24 | 5 | -7/+92 |
* | Mangle static variables with an extra name to distinguish them from non-stati... | Alexis Hunt | 2010-01-24 | 1 | -6/+11 |
* | fix PR6034, a crash on invalid where the switch stack would get | Chris Lattner | 2010-01-24 | 3 | -8/+20 |
* | Fix a nasty bug where temporaries weren't marked as being conditional in some... | Anders Carlsson | 2010-01-24 | 2 | -0/+11 |
* | Use new initialization code when dealing with [dcl.init.aggr]p12. This fixes ... | Anders Carlsson | 2010-01-24 | 1 | -16/+28 |
* | Change all InitializedEntity pointers over to be references. | Anders Carlsson | 2010-01-23 | 1 | -137/+81 |
* | Start passing InitializedEntity to CheckDesignatedInitializer. | Anders Carlsson | 2010-01-23 | 1 | -9/+22 |
* | Preserve access for enum constants during template instantiation. | John McCall | 2010-01-23 | 1 | -0/+1 |
* | More init work, adding more entity parameters. | Anders Carlsson | 2010-01-23 | 1 | -10/+27 |
* | Use the new init code for member subobjects. | Anders Carlsson | 2010-01-23 | 1 | -6/+18 |
* | Switch some array initialization over to the new init code. | Anders Carlsson | 2010-01-23 | 1 | -7/+22 |
* | Baby steps towards migrating the InitListChecker over to the new initializati... | Anders Carlsson | 2010-01-23 | 1 | -33/+65 |
* | When an InitializedEntity is passed to CheckSingleInitializer, call the new S... | Anders Carlsson | 2010-01-23 | 1 | -22/+36 |
* | Add bzero builtin; this should help codegen quality for code using this | Eli Friedman | 2010-01-23 | 1 | -0/+1 |
* | Change CheckSingleInitializer to take/return OwningExprResults instead. No fu... | Anders Carlsson | 2010-01-23 | 1 | -24/+46 |
* | Simplify code with StringRef. | Benjamin Kramer | 2010-01-23 | 1 | -6/+5 |
* | No need to terminate this buffer. | Benjamin Kramer | 2010-01-23 | 1 | -4/+3 |
* | Produce a special diagnostic when users call a function with an argument of | John McCall | 2010-01-23 | 1 | -1/+16 |
* | Fix the EntityKind order so that all entity kinds that can be copied (using c... | Anders Carlsson | 2010-01-23 | 1 | -5/+5 |
* | During overload resolution diagnostics, sort non-viable candidates by the qua... | John McCall | 2010-01-23 | 2 | -5/+122 |
* | Separate EK_ArrayOrVectorElement into EK_ArrayElement and EK_VectorElement; a... | Anders Carlsson | 2010-01-23 | 2 | -12/+24 |
* | Created __builtin___NSStringMakeConstantString() builtin, which generates con... | David Chisnall | 2010-01-23 | 9 | -20/+49 |
* | Rename getClangFullVendorVersion() to getClangFullVersion(). | Ted Kremenek | 2010-01-23 | 2 | -2/+2 |
* | Implement elementary access control. | John McCall | 2010-01-23 | 7 | -18/+180 |
* | Extend clang_createTranslationUnitFromSourceFile() to support creating | Douglas Gregor | 2010-01-23 | 2 | -12/+61 |
* | outside a method, 'super' should resolve in a normal name look up | Fariborz Jahanian | 2010-01-22 | 1 | -1/+11 |
* | Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clan... | Ted Kremenek | 2010-01-22 | 1 | -2/+2 |
* | Move version string generation (e.g., "clang 1.1 ...") to libBasic/Version.cp... | Ted Kremenek | 2010-01-22 | 4 | -16/+23 |
* | (1) Rename getClangSubversionRevision() to getClangRevision(), and | Ted Kremenek | 2010-01-22 | 4 | -22/+30 |
* | ui64, etc. are valid VS suffixes. | Fariborz Jahanian | 2010-01-22 | 1 | -1/+1 |
* | Rename pch::SVN_BRANCH_REVISION to pch::VERSION_CONTROL_BRANCH_REVISION. | Ted Kremenek | 2010-01-22 | 2 | -4/+4 |
* | Rename getClangSubversionPath() -> getClangRepositoryPath() and have it retur... | Ted Kremenek | 2010-01-22 | 4 | -6/+9 |
* | Be sure to select primary bases among the nearly empties in preorder, | Mike Stump | 2010-01-22 | 1 | -0/+5 |
* | Teach CIndex's cursor visitor to restrict its traversal to a specific | Douglas Gregor | 2010-01-22 | 3 | -13/+17 |
* | Finish off fixing up debug information. | Mike Stump | 2010-01-22 | 1 | -4/+4 |