- e7ac0a9 Fix the atomics sema code to convert operands to the argument types by Chris Lattner · 16 years ago
- 008fc73 Remove experimental ownership attributes from Clang. by Ted Kremenek · 16 years ago
- 2572eda Region store: when casting VarRegions, if the cast-to pointee type is by Zhongxing Xu · 16 years ago
- 5caa370 reimplement __sync_* builtins to be variadic and to follow the same by Chris Lattner · 16 years ago
- fb1e331 Replace the heuristic isSmallerThan with ASTContext::getTypeSize(). by Zhongxing Xu · 16 years ago
- 25258f8 Fix <rdar://problem/6845148>. Signed integers compared against pointers should by Ted Kremenek · 16 years ago
- b03d9af Fix crash with constant initialization of bit-fields in unions. by Eli Friedman · 16 years ago
- 046efd9 Add a warning for a missing copy attribute on a property that is a by Mike Stump · 16 years ago
- 913af35 Remove -fobjc-tight-layout, seems to work! by Daniel Dunbar · 16 years ago
- 7bc8d96 Allow qualifiers on blocks. Radar 6441502 by Mike Stump · 16 years ago
- 7704a33 More attribute renaming: by Ted Kremenek · 16 years ago
- cae27c5 a forward class declaration matching a typedef name of a class by Fariborz Jahanian · 16 years ago
- 2c4036e Fix <rdar://problem/6848739>. When using -analyze, -Werror has no effect. by Ted Kremenek · 16 years ago
- af199f3 Tighten up relationals with blocks and ints. Radar 6441502 by Mike Stump · 16 years ago
- 6d507a6 Big update to the C++ status table to reflect "recent" by Douglas Gregor · 16 years ago
- a6c0e07 Document the dependent type equivalence test case's purpose. by Douglas Gregor · 16 years ago
- 6bbf646 Test a few more variants of dependent type names by Douglas Gregor · 16 years ago
- 45fbaf0 Compute the canonical template name when building a template by Douglas Gregor · 16 years ago
- 25a3ef7 Start canonicalizing template names. This is not yet complete, but it by Douglas Gregor · 16 years ago
- 5031c46 Make this test portable to non-x86 hosts, patch by Mark Cianciosa! by Chris Lattner · 16 years ago
- dd3e166 Improve semantic checking for blocks. Radar 6441502 by Mike Stump · 16 years ago
- 3ac7904 Handle -march for the LLVM recognized cpu names. by Daniel Dunbar · 16 years ago
- 1c44830 If stderr isn't a terminal, don't try to guess the terminal width or by Daniel Dunbar · 16 years ago
- 17ca363 More x86 target feature support. by Daniel Dunbar · 16 years ago
- 4253051 Fix analyzer regression reported in PR 4164: by Ted Kremenek · 16 years ago
- 41fd018 Improve RegionStoreManager::getSizeInElements() by Zhongxing Xu · 16 years ago
- ccb1616 Implement a heuristic type size comparison method for now. by Zhongxing Xu · 16 years ago
- c9c042c adjust this to bourne shell syntax by Chris Lattner · 16 years ago
- 500aec4 Tweak x86 -mcpu defaults. - Default to yonah on Darwin (to get SSE3). by Daniel Dunbar · 16 years ago
- f47f7a1 Add parsing of friend specifiers. by Anders Carlsson · 16 years ago
- 868bd0a Improve handling of (X86) target features. - This is a WIP... by Daniel Dunbar · 16 years ago
- 8898059 Make StoreManager::CastRegion() virtual and implement a new CastRegion() for by Zhongxing Xu · 16 years ago
- 06b8912 Fixes a bug for objc2's gc in the presense of type-casts. by Fariborz Jahanian · 16 years ago
- 037fb7f Fix rdar://6849429 - -Wunused-value with deeply nested macro expansion generates untraceable warnings by Chris Lattner · 16 years ago
- 67a16fe rename test by Chris Lattner · 16 years ago
- 69aa080 Implement attribute 'ns_autorelease'. by Ted Kremenek · 16 years ago
- 041f2fd Issue a warning in odd case of instance method used by Fariborz Jahanian · 16 years ago
- 4222f21 Enhance ownership attribute tests with functions that use the attributes! by Ted Kremenek · 16 years ago
- bdb0132 When defining a function whose type has no prototype, make an effort by Chris Lattner · 16 years ago
- e351aa1 Implement attribute 'cf_returns_owned' (mirrors 'ns_returns_owned'). by Ted Kremenek · 16 years ago
- d331dd7 Rename ownership attributes: by Ted Kremenek · 16 years ago
- 6a08469 Rename attribute 'ns_ownership_returns' to 'ns_returns_ownership'. by Ted Kremenek · 16 years ago
- d99b345 Remove experimental attribute 'ns_ownership_make_collectable.' by Ted Kremenek · 16 years ago
- bf63b87 Provide basic support for generation of objc2's by Fariborz Jahanian · 16 years ago
- 6e8575b Fix the field count in interface record layout (it was incorrectly by Daniel Dunbar · 16 years ago
- 31fa7d7 Adding more test to ivar-layout-64.m. by Fariborz Jahanian · 16 years ago
- b4c79e0 Compute interface instanceStart and instanceSize using the record by Daniel Dunbar · 16 years ago
- d4edddd ignore weak_import attribute on objc method decls. by Fariborz Jahanian · 16 years ago
- 75494ff Rename attributes 'objc_ownership...' to 'ns_ownership...'. by Ted Kremenek · 16 years ago
- 65d80fd Fix false positive null dereference by unifying code paths in GRSimpleVals for by Ted Kremenek · 16 years ago
- 31c215e Rename attributes: by Ted Kremenek · 16 years ago
- 1308f57 Update test case. by Ted Kremenek · 16 years ago
- 1c6a3cc Remove support for ObjCMethodDecl attributes that appear between the by Ted Kremenek · 16 years ago
- dcef78d Update test case... the location given for this error makes it look by Daniel Dunbar · 16 years ago
- 0b9ad89 Rename no-outofbounds.c to xfail-no-outofbounds.c and split off that by Ted Kremenek · 16 years ago
- b5b848e array indexes are unsigned integers of the same width as pointer. by Zhongxing Xu · 16 years ago
- 8d3d13e Test now passes. I'll hold off merging it with the BasicStore test until we know this is a stable change. by Ted Kremenek · 16 years ago
- 20bd746 BasicStore: 'ElementRegion' is the new 'TypedViewRegion'. by Ted Kremenek · 16 years ago
- 9aa829b This test no longer fails. by Ted Kremenek · 16 years ago
- fd6b4f3 Handle 'long x = 0; char *y = (char *) x;' by layering an by Ted Kremenek · 16 years ago
- f936f45 Per conversations with Zhongxing, add an 'element type' to by Ted Kremenek · 16 years ago
- 0c6db94 Implement support for comparing pointers with <, >, <=, >=, ==, and != by Douglas Gregor · 16 years ago
- 3189e4b PR4143: don't crash generating debug info for incomplete enum types. by Eli Friedman · 16 years ago
- 3715328 Don't allow clients to traverse into superclass synthesized properties by Daniel Dunbar · 16 years ago
- 609e5c3 Set COLUMNS=0 to disable wrapping instead of a random large number. by Daniel Dunbar · 16 years ago
- 5f86567 Test a few more bits of the driver. by Daniel Dunbar · 16 years ago
- f4287fd Make diagnostic printing more deterministic when running tests. by Daniel Dunbar · 16 years ago
- 1ef29d2 Fix an infinite loop in diagnostic printing. by Daniel Dunbar · 16 years ago
- 5320285 PR2524: downgrade taking address of expression of type 'void' to an by Eli Friedman · 16 years ago
- c0d600c Fix/re-enable test. by Eli Friedman · 16 years ago
- 9c2b347 Disable this test case, I'm tired of seeing red. :) by Daniel Dunbar · 16 years ago
- 5a5a803 Use the implementation decl for looking up offset while building the by Daniel Dunbar · 16 years ago
- a74869c Rename test case by Daniel Dunbar · 16 years ago
- 686a21b Fix the testcase for PR4132. by Eli Friedman · 16 years ago
- 9668255 Add RegionStore test that illustrates a bogus array-out-of-bounds error. by Ted Kremenek · 16 years ago
- 3b660ef PR4134: Implement __builtin_extract_return_addr. by Eli Friedman · 16 years ago
- d9b856f Fix for PR4132: make sure to insert whitespace consistently before a by Eli Friedman · 16 years ago
- 953e8ab Add failing test case. by Ted Kremenek · 16 years ago
- 5e22213 PR4133: fix always_inline implementation to be consistent with gcc. by Eli Friedman · 16 years ago
- ed4ec8f One can use "class" and "struct" interchangeably to refer to a class by Douglas Gregor · 16 years ago
- e5393fb PR4063, with feeling: Chain PP callbacks by default. by Daniel Dunbar · 16 years ago
- 0a70c64 PR4063: Fix dependency generation with -E. by Daniel Dunbar · 16 years ago
- 0bdaa5b look at the right operand when increasing the size of an asm output, by Chris Lattner · 16 years ago
- 3351f11 allow references to the larger value in a tied constraint by Chris Lattner · 16 years ago
- a077b5c add support for tying asm operands where the result is smaller than by Chris Lattner · 16 years ago
- 50ac766 Remove typo by Daniel Dunbar · 16 years ago
- ede9d90 implement support for asm outputs targetting non-simple lvalue destinations by Chris Lattner · 16 years ago
- 4df4ee0 handle codegen of asms where a small input is tied to a large output. by Chris Lattner · 16 years ago
- f69fcae If we have mismatched integer tied operands, but the operand by Chris Lattner · 16 years ago
- 9251143 Fix: <rdar://problem/6850275> CF objects returned from methods with "new" or "copy" in their name should be treated as owned by Ted Kremenek · 16 years ago
- ad04e67 Fix invalid error about duplicate declaration of padding bit field in by Daniel Dunbar · 16 years ago
- 3e001f3 region store: make Retrieve() can retrieve embedded array correctly. Also by Zhongxing Xu · 16 years ago
- 6ecc7a9 Driver: When using the generic gcc tool, pass -m32 or -m64 if we by Daniel Dunbar · 16 years ago
- a8304f6 Driver: Generate an error when trying to pass an LLVM bc input to a by Daniel Dunbar · 16 years ago
- 5ddce19 Use clang to find clang-cc, if it isn't in path. by Daniel Dunbar · 16 years ago
- 5992e4a Fix a thinko and a test. by Anders Carlsson · 16 years ago
- f9b8bc6 Downgrade the invalid offsetof error to a warning. by Anders Carlsson · 16 years ago
- 33bbbc5 When determining whether an expression refers to a bit-field, look by Douglas Gregor · 16 years ago
- b3b0b36 Add CFG support for @synchronized. This fixes <rdar://problem/6848820>. by Ted Kremenek · 16 years ago
- 935022a Add another null pointer check test case. by Ted Kremenek · 16 years ago