]> granicus.if.org Git - clang/shortlog
clang
2008-05-23 Chris Lattnerfix an inconsistency computing offsets that caused...
2008-05-23 Ted KremenekDisable the use of PCH files when using xcodebuild.
2008-05-23 Steve NaroffMinor tweak to -ast-dump for ivars.
2008-05-23 Steve NaroffFix range info for explicit ivar refs.
2008-05-23 Ted KremenekRevert r51498: http://llvm.org/viewvc/llvm-project...
2008-05-23 Steve NaroffRemove a diagnostic (temporary hack that will be remove...
2008-05-23 Chris Lattnerminor changes, collect the range of an expr before...
2008-05-23 Steve NaroffMake sure method definitions get output with -ast-dump.
2008-05-23 Ted KremenekWhen known, include the analyzer build in the output...
2008-05-23 Ted KremenekMore test cases for retain/release checker. These...
2008-05-23 Gabor Greiffix typo
2008-05-23 Ted KremenekUnbreak build. Forget to check in this header file...
2008-05-23 Ted KremenekFix typo.
2008-05-23 Steve NaroffTweak AST dumper for ObjC ivars.
2008-05-22 Ted KremenekAdditional retain/release checker regression tests.
2008-05-22 Ted KremenekPrototyped support in the BugReporter to emit diagnosti...
2008-05-22 Steve NaroffMake sure the source location for @property points...
2008-05-22 Dan GohmanChange uses of llvm::Type::isFirstClassType to use...
2008-05-22 Ted KremenekExpand retain/release checker to consider methods/funct...
2008-05-22 Ted KremenekDon't use ostringstream (pulling in <sstream>) when...
2008-05-22 Ted KremenekUpdate driver include paths to work on darwin10.
2008-05-22 Eli FriedmanPatch for PR2350; the issue was tnat we were allowing...
2008-05-22 Eli FriedmanMake debugging information usable. This is barebones...
2008-05-22 Eli FriedmanMinor refactoring: compute the return value separately...
2008-05-22 Eli FriedmanMake CurFuncDecl more specific; I have some code I...
2008-05-22 Dan GohmanMove getAccessedFieldNo out of lib/AST/Expr.cpp into
2008-05-21 Ted KremenekImprove dead stores diagnostics to include the variable...
2008-05-21 Dan GohmanRemove the unneeded #include of VMCore header "llvm...
2008-05-21 Dan GohmanExplicitly #include Support/Streams.h when using llvm...
2008-05-21 Ted KremenekAdd Destroy method to Types, making there destruction...
2008-05-21 Ted KremenekFix potential double-free.
2008-05-21 Steve NaroffFixup ASTContext::PrintStats()...it was causing several...
2008-05-21 Ted KremenekWhen destroying DeclStmts, also destroy the associated...
2008-05-21 Ted KremenekFixed bug in the transfer function for dereferences...
2008-05-21 Eli FriedmanRemove an unnecessary/buggy if check. Ran into this...
2008-05-21 Eli FriedmanA small testcase; no patch, since it was a bug in a...
2008-05-21 Eli FriedmanFix this test so that it's valid; the point is to test...
2008-05-21 Eli FriedmanFix the destruction "properly" in the sense that we...
2008-05-21 Eli FriedmanPR2347: Fix crash iterating over VLAs; this started...
2008-05-21 Eli FriedmanDon't kill the declarations if the translation unit...
2008-05-21 Eli FriedmanFix a couple of bugs found by Neil Booth in the const...
2008-05-21 Eli FriedmanProtect iso646.h from C++ (although I can't imagine...
2008-05-20 Steve NaroffAdd SemaInit.cpp to VC++ proj.
2008-05-20 Nuno Lopesinitialize variable and fix a bunch of test failures
2008-05-20 Nuno Lopesfix warning with gcc 4.1 (ptr to bool convertion)
2008-05-20 Eli FriedmanRemove hacks from ASTContext now that alignment gets...
2008-05-20 Eli FriedmanMissed an include.
2008-05-20 Eli FriedmanMinor correction for PPC targets.
2008-05-20 Eli FriedmanSome small changes to make the target info a bit more...
2008-05-20 Eli FriedmanPerform stricter/more accurate checking for C99 constan...
2008-05-20 Eli FriedmanAdd a couple more headers. stddef was discussed on...
2008-05-20 Eli FriedmanTest from PR2332; bug already fixed by r51311.
2008-05-20 Eli FriedmanDisable the function address cache; this doesn't have...
2008-05-20 Eli FriedmanFix the scope of K&R-style argument declarations so...
2008-05-20 Eli FriedmanFix test (it was incorrectly succeeding).
2008-05-20 Eli FriedmanAdd codegen support for stack address intrinsics.
2008-05-20 Eli FriedmanFix typo in test.
2008-05-20 Eli FriedmanAdd __builtin_frame_address and __builtin_return_addres...
2008-05-20 Eli FriedmanImplement codegen for comma operator for structs.
2008-05-20 Eli FriedmanBe a bit more defensive in SemaInit.
2008-05-20 Eli FriedmanAdd some more checking for compound literals.
2008-05-20 Ted KremenekReclaim memory from chains of ScopedDecls, and reclaim...
2008-05-20 Ted KremenekDelete AST nodes, not just Decls.
2008-05-20 Ted KremenekReclaim memory allocated for ParmVarDecl's in FunctionD...
2008-05-20 Ted KremenekWhen serializing FunctionDecl, serialize out a referenc...
2008-05-20 Ted KremenekRemove unnecessary #include (introduced by a recent...
2008-05-20 Ted KremenekTry to plug some memory leaks...
2008-05-20 Eli FriedmanRestructure constant structure init codegen so that...
2008-05-20 Eli FriedmanRemove code that shouldn't have any effect anymore.
2008-05-19 Eli FriedmanImplement CodeGen for __builtin_memcpy.
2008-05-19 Ted KremenekUpdated Xcode project.
2008-05-19 Ted KremenekAdded Stmt::DestroyChildren, which will be used by...
2008-05-19 Eli FriedmanMake the unused expression warning a bit less aggressiv...
2008-05-19 Eli FriedmanSwitch on SemaInit; this makes some code in SemaDecl...
2008-05-19 Eli FriedmanAdjust warning so that it doesn't fire when there is...
2008-05-19 Eli FriedmanRemove illegal test.
2008-05-19 Eli FriedmanAdd errors for some illegal constructs (specifically...
2008-05-19 Eli FriedmanSome more SemaInit cleanup.
2008-05-19 Eli FriedmanVarious fixes; solves (almost) all of the test regressi...
2008-05-19 Eli FriedmanFix the emission of expressions like char a[10] = ...
2008-05-18 Eli FriedmanAdd proper type-checking for pointer additiion; before...
2008-05-17 Eli FriedmanFix support for _Bool bitfields. The issue is that...
2008-05-17 Ted KremenekMicro-optimization when checking for panic functions.
2008-05-17 Ted KremenekFix 80 col violation.
2008-05-17 Ted KremenekAdded panic function _XCAssertionFailureHandler.
2008-05-16 Eli FriedmanBackout of codegen-based fix to PR2334; this has been...
2008-05-16 Eli FriedmanSema-based fix for PR2334. The issue is that even...
2008-05-16 Nate BegemanFix some prototypes, and implement some builtins until...
2008-05-16 Ted KremenekCache leaks by the allocation site, not the leak location.
2008-05-16 Ted KremenekPartitioned BugTypeCachedLocation::isCached() into...
2008-05-16 Eli FriedmanReview nit.
2008-05-16 Eli FriedmanClean up ownership per review comment.
2008-05-16 Eli FriedmanFix review nit.
2008-05-16 Eli FriedmanPatch for PR2334, and a similar ObjC bug.
2008-05-16 Ted KremenekAdded CFGBlock::hasBinaryBranchTerminator().
2008-05-16 Eli FriedmanMinor cleanup to isBuiltinConstantExpr.
2008-05-15 Ted KremenekFixed another regression introduced by r51113 caused...
2008-05-15 Ted KremenekRemoved bogus "return true" in Expr::isConstantExpr...
2008-05-15 Steve NaroffFix rewriter bug <rdar://problem/5929344> clang ObjC...
2008-05-15 Steve NaroffRevert...
next