- 44fe1e3 Fix <rdar://problem/6445502> clang ObjC rewriter: _Block_release has wrong parameter type in preamble by Steve Naroff · 16 years ago
- b6bf544 Partial fix for qualified name lookup, such that the lookup of N in by Douglas Gregor · 16 years ago
- d980b14 Implement RegionStoreManager::Remove(). by Zhongxing Xu · 16 years ago
- 0c06709 Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
- 24effa8 Make name lookup when we're inside a declarator's scope, such as ClassName::func, work with the new unqualified name lookup code. Test it with default arguments in out-of-line member definitions by Douglas Gregor · 16 years ago
- ff2467a Added a test for default arguments added to out-of-line member by Douglas Gregor · 16 years ago
- c5cbc24 Diagnose erroneous uses of out-of-line member definitions and scope by Douglas Gregor · 16 years ago
- e658bf5 Fix for PR3212: don't descend into C++ operator overloading code for C by Eli Friedman · 16 years ago
- 6422de6 Make error handling for va_start a bit more robust. Fixes PR3213. by Eli Friedman · 16 years ago
- cb8e803 Name of addLayoutToClass is confusing as no layout calculation by Fariborz Jahanian · 16 years ago
- b921383 Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
- a2549ec And a test case for my previous patch. by Fariborz Jahanian · 16 years ago
- 86008c0 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
- 5f9fb3f Preprocessor: Allocate MacroInfo objects using a BumpPtrAllocator instead using new/delete. This speeds up -Eonly on Cocoa.h using the regular lexer by 1.8% and the PTHLexer by 3%. by Ted Kremenek · 16 years ago
- 41cf015 Fix regression in handling sizeof(void) in the static analyzer. by Ted Kremenek · 16 years ago
- 138f7bb Removed setRecordForDecl. Added a FIXME. by Fariborz Jahanian · 16 years ago
- 789e171 Don't double-destroy constructors defined out-of-line. This is a by Douglas Gregor · 16 years ago
- ae64489 Create new EnumDecl nodes for redeclarations of enums, linking them by Douglas Gregor · 16 years ago
- 1640bf2 dont call iterator::end() on every cycle and dont read already-deleted memory by Nuno Lopes · 16 years ago
- 8a03047 minor WS fix for the previous commit by Nuno Lopes · 16 years ago
- 8f3bb2a fix leakage of CXXSpecialName objects in DeclarationNameTable by Nuno Lopes · 16 years ago
- 9d9fd88 I think we should getRValueType here. The lvaluetype of an array region is 'pointer to array'. by Zhongxing Xu · 16 years ago
- b193b89 Updated checker build. by Ted Kremenek · 16 years ago
- c217619 Store the size of the EH stack inside each BreakContinue struct so we know when a break/continue won't cross a try block. by Anders Carlsson · 16 years ago
- 0977239 Patch for ObjCIvarRefExpr containing the field by Fariborz Jahanian · 16 years ago
- f5da325 MemRegion: by Ted Kremenek · 16 years ago
- 624921a Add storage layout to ObjC classes. by Fariborz Jahanian · 16 years ago
- a833cc6 eliminate the isCXXNamedOperator function and some string compares and by Chris Lattner · 16 years ago
- deeefde Temporarily XFAIL these tests. by Ted Kremenek · 16 years ago
- 2c0de35 A series of cleanups/fixes motivated by <rdar://problem/6442306>: by Ted Kremenek · 16 years ago
- b9d7c66 disable Anders' recent VLA patch, this fixes PR3209. by Chris Lattner · 16 years ago
- 91f9b0a Some utilities for using the smart pointers in Actions, especially Sema. Convert a few functions. by Sebastian Redl · 16 years ago
- a2deb43 Convert remaining expression parsers to smart pointers. Now on to the Action connection. by Sebastian Redl · 16 years ago
- 473d839 stdlib.h is the wrong header for printf, and introduces test-breaking definitions of inlines on Linux by Sebastian Redl · 16 years ago
- 6bb57ee Add /Za to all MSVC build of a clang libraries. by Cédric Venet · 16 years ago
- be3e84f PTH: Added minor 'sibling jumping' optimization for iterating over the side table used for fast preprocessor block skipping. This has a minor performance improvement when preprocessing Cocoa.h, but can have some wins in pathologic cases. by Ted Kremenek · 16 years ago
- 5282b95 Fix <rdar://problem/6435837> clang ObjC rewriter: use Block_release instead of Block_destroy. by Steve Naroff · 16 years ago
- f5dfe9c fix a buggy fall through that caused a crash-on-invalid. rdar://6248081 by Chris Lattner · 16 years ago
- 455523c Add test case for using mmintrin (and making sure that inlining is by Daniel Dunbar · 16 years ago
- 81caece Force i[0-9]86 to i386 when using LLVM_HOSTTRIPLE. by Daniel Dunbar · 16 years ago
- c07091c Added PTH optimization to not process entire blocks of tokens that appear in skipped preprocessor blocks. This improves PTH speed by 6%. The code for this optimization itself is not very optimized, and will get cleaned up. by Ted Kremenek · 16 years ago
- 0b5038d Enhance PTH preprocessor-condition-block side table to track #elseinformation as well. by Ted Kremenek · 16 years ago
- 2a6a5b3 Implement the final (hopefully) wrinkle to i-c-e + builtin_constant_p by Chris Lattner · 16 years ago
- 9834104 Enable out-of-line definitions of C++ constructors and destructors by Douglas Gregor · 16 years ago
- 9be6aaf Implement allocation and sizeof VLAs. This is very basic for now. by Anders Carlsson · 16 years ago
- c369780 rdar://6060752 - don't warn about trigraphs in bcpl-style comments by Chris Lattner · 16 years ago
- c8d7a40 fix breakage I introduced in r60938 by Chris Lattner · 16 years ago
- eb67c0b Add test of enumerator types by Douglas Gregor · 16 years ago
- 32aa0c2 Add map of VLA types and their sizes by Anders Carlsson · 16 years ago
- 819e308 silence warning in release-asserts mode about unused variable, also by Chris Lattner · 16 years ago
- b387287 fix thought-o by Chris Lattner · 16 years ago
- 7ed37ef merge these testcases into one file. by Chris Lattner · 16 years ago
- 1d0214b add a fixme. by Chris Lattner · 16 years ago
- 45e71bf implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e. by Chris Lattner · 16 years ago
- a82444d use smarter error recovery for do/while. by Chris Lattner · 16 years ago
- f959397 apply the new error recovery smarts we have for if's to while's and switch's. by Chris Lattner · 16 years ago
- d42f977 rename recovery-3 to recovery.c by Chris Lattner · 16 years ago
- e309d03 merge recovery-1 into recovery-3. by Chris Lattner · 16 years ago
- 3651bf6 merge recovery-2.c into recovery-3.c. by Chris Lattner · 16 years ago
- cde12fd minor refactoring of ParseParenExpression by Chris Lattner · 16 years ago
- 9b937e5 add expected diag by Chris Lattner · 16 years ago
- a6fcf77 add ownership.h to xcode project by Chris Lattner · 16 years ago
- 438ddd8 Work in preparation for VLAs. Make sure to restore the stack if necessary (Saving the stack isn't implemented right now :) by Anders Carlsson · 16 years ago
- a5f779dc Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
- 0d9adb5 Testcase for something that already works. Clang agrees with Comeau, by Chris Lattner · 16 years ago
- fc37018 add codegen support for __func__ and friends, producing the same by Chris Lattner · 16 years ago
- bce5e4f fix rdar://6097892 - gcc incompat: clang rejects __func__, __FUNCTION__, and __PRETTY_FUNCTION__ outside func by Chris Lattner · 16 years ago
- 8464c37 Implement rdar://6138816 - [sema] named bitfields cannot have 0 width by Chris Lattner · 16 years ago
- 6b5e34f In C++, set the type of each of the enumerators in an enumeration to by Douglas Gregor · 16 years ago
- 8309c92 PTH: by Ted Kremenek · 16 years ago
- 76eb2c5 add annotation by Chris Lattner · 16 years ago
- 39d4f02 Convert a big bunch of expression parsers to use smart pointers. by Sebastian Redl · 16 years ago
- fe5c62d PTHLexer: Keep track of the location of the last '#' token and provide the means to jump ahead in the token stream. by Ted Kremenek · 16 years ago
- a6817a0 Convert some more expression parsers to use smart pointers. by Sebastian Redl · 16 years ago
- 14ca741 Convert selected expression parsers to use smart pointers. by Sebastian Redl · 16 years ago
- d896f4b Rename a local predicate to avoid confusion with Type::isBlockPointerType(). by Steve Naroff · 16 years ago
- 1d56d9e Fixup generated code for imported block decl refs. by Steve Naroff · 16 years ago
- 3967762 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
- e8b79e6 Remove unused ivar CurTokenIdx. by Ted Kremenek · 16 years ago
- 15bf145 Convert the remaining statement parsers to smart pointers. by Sebastian Redl · 16 years ago
- a88da59 Convert some more statement parsers to smart pointers. by Sebastian Redl · 16 years ago
- 09dd73e Fix <rdar://problem/6435842> clang ObjC rewriter: #include Block.h, Block_private.h or come up with #define to prevent double-definition by Steve Naroff · 16 years ago
- 10c3295 Convert a number of statement parsers to smart pointers. by Sebastian Redl · 16 years ago
- 20f6739 Fix <rdar://problem/6435382> clang ObjC rewriter: @property/@synthesize and blocks don't work together by Steve Naroff · 16 years ago
- 640a04b Actually distinguish between RecordDecl::field_iterator and RecordDecl::field_const_iterator, propagating the constness down to the FieldDecls. by Douglas Gregor · 16 years ago
- 8acb727 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
- 2dfa825 Identify AnonPointeeRegion by the symbol that is concretized. by Zhongxing Xu · 16 years ago
- 998605c AnonPointeeRegions are now identified by the MemRegion of the pointer pointing by Zhongxing Xu · 16 years ago
- b45a834 Updated checker build. by Ted Kremenek · 16 years ago
- d8c3fe4 Add another complex promotion test. by Anders Carlsson · 16 years ago
- 488a079 Make sure to promote expressions of the form (floating point + complex integer) correctly, to (complex floating point + complex floating point) by Anders Carlsson · 16 years ago
- 55dacf3 PreprocessorLexer (and subclasses): by Ted Kremenek · 16 years ago
- 48840c7 Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
- 28ceff7 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
- 5b82d61 Fix PR clang/3175: CheckAddressOfOperand does not handle references to class vars by Douglas Gregor · 16 years ago
- a5d8461 Some cleanups to the dependent-types commit, as suggested by Sebastian by Douglas Gregor · 16 years ago
- da32905 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
- 802fbd8 Declare PerIDCache as IdentifierInfo** instead of void*. This is just cleaner. No performance change. by Ted Kremenek · 16 years ago
- 09e1b9e Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
- 478f738 Fix regression caused by fixing <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with Blocks and properties by Steve Naroff · 16 years ago