]> granicus.if.org Git - clang/shortlog
clang
2009-05-10 Ted KremenekUpdate checker build.
2009-05-09 Ted KremenekAdd total hack to get scan-build working again. ccc...
2009-05-09 Chris Lattnerforce a target triple so that the right greppable outpu...
2009-05-09 Zhongxing XuWhen casting VarRegion, if the var type is aggregate...
2009-05-09 Zhongxing XuRemove the rest TypedViewRegion processing code. There...
2009-05-09 Zhongxing XuWhen evaluating pointer arithmetic, if the base locatio...
2009-05-09 Zhongxing XuDo not create a TypedViewRegion when the base struct...
2009-05-09 Zhongxing Xuadd comments to test case.
2009-05-09 Zhongxing XuDo not layer a TypedViewRegion when casting symbolic...
2009-05-09 Zhongxing XuRemove the case for casting to compatible type in
2009-05-09 Duncan SandsCorrect for renaming PaddedSize -> AllocSize in
2009-05-09 Ted KremenekRoll back to checker build 0.195.
2009-05-09 Zhongxing XuRename:
2009-05-09 Zhongxing XuAs discussed with Ted, rename TypedRegion::getObjectTyp...
2009-05-09 Ted KremenekAdd back test cases for ns_returns_retained and cf_retu...
2009-05-09 Ted KremenekAdd back attribute string lookup for 'ns_returns_retain...
2009-05-09 Ted KremenekAdd back analyzer support for ns_returns_retained and...
2009-05-09 Ted KremenekAdd back Parse/Sema support for attributes cf_returns_r...
2009-05-09 Ted KremenekIt lives! The retain/release checker now tracks object...
2009-05-09 Ted KremenekFix lurking bug in one of the versions of
2009-05-09 Zhongxing Xurename: MemRegion:
2009-05-09 Ted KremenekMore hacking on autorelease errors. We now can emit...
2009-05-09 Ted KremenekPut most of the boilerplate logic in place for reportin...
2009-05-08 Fariborz JahanianWe want to diagnose sending message to a forward class
2009-05-08 Daniel DunbarABITest: Improve test driver marginally, to allow runni...
2009-05-08 Ted Kremenekretain/release checker: Add stub for HandleAutoreleaseC...
2009-05-08 Zhongxing XuFix PR4182.
2009-05-08 Ted Kremenekretain/release checker: Refactor error-reporting code...
2009-05-08 Ted KremenekMake BlockEntrace program points taggable.
2009-05-08 Ted KremenekFix typo in method name.
2009-05-08 Fariborz JahanianWarn if forward class is used as a receiver.
2009-05-08 Daniel DunbarABITest: Move more of the common Makefile bits into...
2009-05-08 Daniel DunbarABITest: Fix a bug in generating test values for struct...
2009-05-08 Daniel Dunbarx86_64 ABI: Ignore padding bit-fields during classifica...
2009-05-08 Daniel DunbarDarwin x86_32: When coercing a "single element" structu...
2009-05-08 Fariborz JahanianFixes a bug in my last patch. Order of types reversed.
2009-05-08 Daniel DunbarDarwin x86_32: Ignore padding bit-fields when looking...
2009-05-08 Daniel DunbarDarwin x86_32: Improve bit-field handling for returning...
2009-05-08 Daniel DunbarDarwin x86_32: Ignore arrays of empty structures inside...
2009-05-08 Fariborz JahanianRefactoring of my last patch.
2009-05-08 Daniel DunbarABITest: Move default set of test args into common...
2009-05-08 Ted Kremenekretain checker: Track the number of times a tracked...
2009-05-08 Fariborz JahanianMore type checking for properties, accessors and
2009-05-08 Anton KorobeynikovProvide dummy va_list typedef for msp430
2009-05-08 Chris Lattnerfurther improvements to gnu objc EH stuff, patch by...
2009-05-08 Chris Lattner"This patch fixes message sends to super in categories...
2009-05-08 Chris LattnerFix the atomics sema code to convert operands to the...
2009-05-08 Ted KremenekRemove experimental ownership attributes from Clang.
2009-05-08 Zhongxing XuRegion store: when casting VarRegions, if the cast...
2009-05-08 Chris Lattnerreimplement __sync_* builtins to be variadic and to...
2009-05-08 Zhongxing XuReplace the heuristic isSmallerThan with ASTContext...
2009-05-08 Zhongxing XuReplace getTypeWidth() with ASTContext::getTypeSize().
2009-05-08 Zhongxing XuRevert r71079.
2009-05-08 Daniel DunbarAdd various other bits I use to run ABITest.
2009-05-08 Ted KremenekFix <rdar://problem/6845148>. Signed integers compared...
2009-05-08 Chris Lattnerinitial support for ObjC exceptions with the GNU runtime:
2009-05-07 Eli FriedmanFix crash with constant initialization of bit-fields...
2009-05-07 Ted KremenekMinor code cleanup in retain/release checker in prepara...
2009-05-07 Daniel DunbarAdd to the house of cards that is ABITestGen.
2009-05-07 Mike StumpAdd a warning for a missing copy attribute on a propert...
2009-05-07 Daniel DunbarRemove -fobjc-tight-layout, seems to work!
2009-05-07 Mike StumpAllow qualifiers on blocks. Radar 6441502
2009-05-07 Ted KremenekMore attribute renaming:
2009-05-07 Fariborz Jahaniana forward class declaration matching a typedef name...
2009-05-07 Anders Carlssonadd isFriendSpecified.
2009-05-07 Ted KremenekFix <rdar://problem/6848739>. When using -analyze...
2009-05-07 Mike StumpTighten up relationals with blocks and ints. Radar...
2009-05-07 Ted Kremenekanalyzer: Add ProgramPoint 'PostLValue' just to disting...
2009-05-07 Douglas GregorBig update to the C++ status table to reflect "recent"
2009-05-07 Sebastian RedlFix a FIXME in new expression checking.
2009-05-07 Douglas GregorDocument the dependent type equivalence test case's...
2009-05-07 Douglas GregorTest a few more variants of dependent type names
2009-05-07 Douglas GregorCompute the canonical template name when building a...
2009-05-07 Douglas GregorStart canonicalizing template names. This is not yet...
2009-05-07 Chris LattnerAdd support for LLLi -> int128 in builtins.def
2009-05-07 Chris LattnerMake this test portable to non-x86 hosts, patch by...
2009-05-07 Mike StumpImprove semantic checking for blocks. Radar 6441502
2009-05-07 Ted KremenekAdd preliminary support for enhancing null-pointer...
2009-05-07 Ted KremenekBug fix: Not all ConstraintManagers always return a...
2009-05-06 Sebastian RedlBack out r70506 (exception spec in AST) again. We won...
2009-05-06 Daniel DunbarHandle -march for the LLVM recognized cpu names.
2009-05-06 Ted KremenekRefactor BugReporter interface to have a new 'BugReport...
2009-05-06 Daniel DunbarIf stderr isn't a terminal, don't try to guess the...
2009-05-06 Daniel DunbarMore x86 target feature support.
2009-05-06 Ted KremenekUpdate checker build.
2009-05-06 Daniel DunbarDocument environment variables we handle, and don't...
2009-05-06 Ted KremenekFix analyzer regression reported in PR 4164:
2009-05-06 Chris LattnerMore content.
2009-05-06 Zhongxing XuImprove RegionStoreManager::getSizeInElements()
2009-05-06 Zhongxing Xuadd getTargetInfo() method to ASTContext.
2009-05-06 Zhongxing XuAdd a GDM for recording the cast type of regions.
2009-05-06 Zhongxing XuThe super region of ElementRegion no longer needs to...
2009-05-06 Zhongxing XuImplement a heuristic type size comparison method for...
2009-05-06 Chris Lattneradjust this to bourne shell syntax
2009-05-06 Daniel DunbarTweak x86 -mcpu defaults.
2009-05-06 Anders CarlssonAdd parsing of friend specifiers.
2009-05-06 Douglas GregorEliminate extra vertical space in Clang diagnostics
2009-05-06 Chris Lattnerdaniel is buggy :)
2009-05-06 Chris LattnerFix rdar://6860124 - invalid input constraint 'J' in asm
2009-05-06 Daniel DunbarAdd missing include.
next