- d7241c7 Fix PR7889 by generalizing some over specialized code. There is no by Chris Lattner · 14 years ago
- 5c12c7b fix PR7892, a crash on valid in c++ codegen of __PRETTY_FUNCTION__ by Chris Lattner · 14 years ago
- 1b72fa7 Diagnose if type of iboutletcollection attribute is a builtin type. by Fariborz Jahanian · 14 years ago
- 42cbd78 Rename -Wunused-method -> -Wunused-member-function. by Argyrios Kyrtzidis · 14 years ago
- 6f615bc Whoops. Don't fall through into the overload case when mangling a by John McCall · 14 years ago
- 3d27b10 Introduce -Wunused-method option for warning on unused class methods in anonymous namespace. by Argyrios Kyrtzidis · 14 years ago
- 3a3400b Diagnose use of iboutletcollection on ivar/property by Fariborz Jahanian · 14 years ago
- ec8045d Implicit decl ref expressions might not have name locations; don't silently by John McCall · 14 years ago
- 334c195 Fix horrible CFG bug caused by a series of NullStmts appearing at the beginning of a do...while loop. This would cause by Ted Kremenek · 14 years ago
- a8fb24f Patch to add type parameter support for attribute iboutletcollection. by Fariborz Jahanian · 14 years ago
- 4597553 A member function never has "C" linkage. Fixes <rdar://problem/8318976>. by Douglas Gregor · 14 years ago
- 16ed9ad When generating code completion patterns for method declarations, give by Douglas Gregor · 14 years ago
- f47724b Implement #pragma push_macro, patch by Francois Pichet! by Chris Lattner · 14 years ago
- 47c03a7 1 != I. Fix the formulation of code-completion patterns for by Douglas Gregor · 14 years ago
- 572fc62 Don't try to initialize a reference with a constructed temporary if either by John McCall · 14 years ago
- 2d7d2d9 A field of incomplete type is sufficiently disruptive that we should mark by John McCall · 14 years ago
- a5fb7c3 Implement support for cached code completions for by Douglas Gregor · 14 years ago
- 57dae1a Diagnose assiging to an interface object in by Fariborz Jahanian · 14 years ago
- 50e8ac2 Added basic psuedoconstant checking in IdempotentOperationChecker and fixed some test cases. by Tom Care · 14 years ago
- 5f808c2 Implement name hiding of cached global code-completion results. by Douglas Gregor · 14 years ago
- f5586f6 When caching code completions for global declarations, keep track of by Douglas Gregor · 14 years ago
- d657742 Fix a crash when parsing malformed out-of-line member function by Fariborz Jahanian · 14 years ago
- 881b36c Fix initialization for members of anonymous struct in a union. by Argyrios Kyrtzidis · 14 years ago
- dd7744d Emit diagnostic error when the field of an anonymous struct is non trivial. by Argyrios Kyrtzidis · 14 years ago
- 05e3555 support for vec_add, vec_adds, vec_and, vec_andc with bool arguments by Anton Yartsev · 14 years ago
- 1827e10 When caching global completion results, keep track of the simplified by Douglas Gregor · 14 years ago
- e64f311 Model the effects of strcpy() and stpcpy() in CStringChecker. Other changes: by Jordy Rose · 14 years ago
- f231df3 Error out if reinterpret_casting between member pointers of two different sizes. by Charles Davis · 14 years ago
- d18f9f9 Err on incomplete class types in member pointers when compiling for the by Charles Davis · 14 years ago
- e701117 - Allow making ElementRegions with complex offsets (expressions or symbols) for the purpose of bounds-checking. by Jordy Rose · 14 years ago
- 06999f8 Don't warn for the common pattern of disallowing copying: by Argyrios Kyrtzidis · 14 years ago
- 8071e42 Extend the code-completion caching infrastructure to include global by Douglas Gregor · 14 years ago
- bbc6454 Commit improved version of 111026 & 111027. by Argyrios Kyrtzidis · 14 years ago
- a526154 Update CStringChecker to take advantage of the new metadata symbols and region change callback. Now does basic tracking of string length for general regions. Currently this is still only used for modeling strlen(). by Jordy Rose · 14 years ago
- 43efa31 PR7884: Fix the implementations of __real__ and __imag__ on real floats. by Eli Friedman · 14 years ago
- 8556cc4 Add a test for alloca region extents. by Jordy Rose · 14 years ago
- 09865a9 PR3344: Downgrade "too many braces around scalar initializer" to a warning. by Eli Friedman · 14 years ago
- 23bc11f Always recurse into sub-cursors when annotating tokens, as this information is used for annotating macro arguments. This finishes up <rdar://problem/8044584>. by Ted Kremenek · 14 years ago
- 3f40460 As a heuristic, annotate tokens (via clang_annotateTokens) that are the arguments of a macro instantiation using the closest cursor with the same spelling location. Because macro arguments can get token pasted in any arbitrary order, we use the annotation map to paper over the token -> cursor annotations during our post-processing stage. This fixes most of <rdar://problem/8044584>, but still doesn't work for assert(). by Ted Kremenek · 14 years ago
- 87c08a5 Implement caching of code-completion results for macro definitions by Douglas Gregor · 14 years ago
- 05eac86 Revert 111026 & 111027, build breakage. by Argyrios Kyrtzidis · 14 years ago
- 30c0dd8 The unused warnings extravaganza continues. Warn for: by Argyrios Kyrtzidis · 14 years ago
- f6d1d43 Expand the unused warnings for functions. Warn for: by Argyrios Kyrtzidis · 14 years ago
- f759b4d When issuing warning for future conflict resolution, by Fariborz Jahanian · 14 years ago
- 3cdfc4d Properly give unique-external linkage to members of member templates by John McCall · 14 years ago
- 8ba6691 Work around a crash when checking access to injected class names by John McCall · 14 years ago
- 7ae2faa Implement clang_saveTranslationUnit(), which saves a translation unit by Douglas Gregor · 14 years ago
- caeed1d Driver/OptParser: Add a NoForward flag to prevent forwarding certain options to by Daniel Dunbar · 14 years ago
- b859206 Perform access control when template lookup finds a class template. by John McCall · 14 years ago
- 0b17c61 Instead of modifying the ObjC AST to not modify existing declarations, teach chained PCH to overwrite declarations from earlier PCH files in dependent ones. Tell Sema to note when it changes AST nodes so that they have to be reserialized. Finally, the ObjCProtocolDecls created in forward decls, like the ObjCInterfaceDecls in @class forward decls, are not lexically part of the decl context; only the definition is. by Sebastian Redl · 14 years ago
- 8404f67 Make use of __func__ in a block actually refer to by Fariborz Jahanian · 14 years ago
- 279b5eb Just disable the hidden-visibility optimization for now by hiding it behind by John McCall · 14 years ago
- a7a8a45 Improved IdempotentOperationChecker false positives and false negatives. by Tom Care · 14 years ago
- ea16110 Patch to issue warning when colllection expresion's type by Fariborz Jahanian · 14 years ago
- b7f4ffe Implement -Wcast-align. The initial design of this diagnostic diverges by John McCall · 14 years ago
- 192b146 Fixes block type matching bug. Radar 8302845. by Fariborz Jahanian · 14 years ago
- 7516451 Revert r110936; this fails on clang-i686-darwin10 too. by Dan Gohman · 14 years ago
- c9ef405 Downgrade error about nonnull attribute bbeing applied to a function without point arguments to a warning by Douglas Gregor · 14 years ago
- f128b85 Make this test darwin only. by Devang Patel · 14 years ago
- 2d474ba Don't emit end-of-file diagnostics like "unterminated conditional" or by Douglas Gregor · 14 years ago
- d5f4487 Temporarily disable this failing test, until it can be properly investigated. by Dan Gohman · 14 years ago
- 6d31122 Test for rdar://problem/8073696. by John McCall · 14 years ago
- 7b49202 Handle the obvious case for diagnosing redeclarations of extern "C" functions. by John McCall · 14 years ago
- e8dc53e Implement RTTI generation for Objective C types. Fixes PR7864. by John McCall · 14 years ago
- fcadea2 Fix a crash on invalid when declaring an implicit member of a class with an by John McCall · 14 years ago
- dabc3e9 Emit debug info for static const class member. by Devang Patel · 14 years ago
- f643264 update test to reflect r110876 change. by Devang Patel · 14 years ago
- e5c3537 Switch on PCH for C++. C++ fans all over the world rejoice. by Argyrios Kyrtzidis · 14 years ago
- b18dc5b Driver/Darwin: Pass -demangle when linking, if the linker supports it. by Daniel Dunbar · 14 years ago
- 646395b -Make TokenID of IdentifierInfo read-only, remove setTokenID(). by Argyrios Kyrtzidis · 14 years ago
- b3a29f1 Revise r110163: don't mark weak functions nounwind, because the optimizer by John McCall · 14 years ago
- 741c362 Change text of diagnostics on user request. radar 7948654. by Fariborz Jahanian · 14 years ago
- d67ef0e Emit a stop point for delegate constructor call. This gives user a chance to step into constructor body. by Devang Patel · 14 years ago
- a5f2de2 When re-raising an exception after a cleanup, we need to call _Unwind_Resume_or_Rethrow by John McCall · 14 years ago
- 4fbe7aa Remove rsqrtps_nr256 and sqrtps_nr256 builtins, at least until we need them by Bruno Cardoso Lopes · 14 years ago
- faa3449 IRGen support for functions returning objc object types. Fixes PR7865. by Fariborz Jahanian · 14 years ago
- 7f1c547 If name lookup finds different type declarations in different scopes by Douglas Gregor · 14 years ago
- deacbdc Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, by Douglas Gregor · 14 years ago
- 18451ea tests: Add a missing -Xclang. by Daniel Dunbar · 14 years ago
- bf3d552 ARM: Recognize single precision float register names. by Daniel Dunbar · 14 years ago
- 1fd7171 ARM: Swap which registers we consider real / aliases to match LLVM and llvm-gcc. by Daniel Dunbar · 14 years ago
- 604eb65 Improve our handling of user-defined conversions when computing by Douglas Gregor · 14 years ago
- 7fc3702 Remove 256-bit cast built-ins and make the AVX intrinsic call llvm __builtin_shufflevector with the appropriate arguments by Bruno Cardoso Lopes · 14 years ago
- 0434881 Make this test a little less dependent on exact optimizer results. by John McCall · 14 years ago
- f0e96c9 Remove 256-bit unpack built-ins and make the AVX intrinsic call llvm __builtin_shufflevector with the appropriate arguments by Bruno Cardoso Lopes · 14 years ago
- b33aa0f Remove 256-bit shuffle built-ins and make the AVX intrinsic call llvm __builtin_shufflevector with the appropriate arguments by Bruno Cardoso Lopes · 14 years ago
- 6f15803 Fix for pr7869, inline asm mult-alt constraints. by John Thompson · 14 years ago
- d96a8e7 Fix a bug in @finally emission in both the fragile and non-fragile EH schemes by John McCall · 14 years ago
- 594ca43 Add test case for <rdar://problem/8288645>. While this is fixed in trunk, we previously were getting the following assertion failure not too long ago: by Ted Kremenek · 14 years ago
- c59a44d Something's wrong with this test on other platforms. I'll probably need to simplify it later. For now revert. by John Thompson · 14 years ago
- 048d03f Fix test to not depend on objc.h header. by Fariborz Jahanian · 14 years ago
- 6a9bb30 Test case for llvm r110712. by Devang Patel · 14 years ago
- 74dc588 tests: Avoid unnecessary redirection. by Daniel Dunbar · 14 years ago
- ea901ae tests: Tests which include system headers must use the driver, not -cc1. by Daniel Dunbar · 14 years ago
- ef44e11 Slightly revised handling of mult-alt constraints, to avoid an assert, until we have the full fix. by John Thompson · 14 years ago
- 224124c When initializing a static local, pop the guard-abort EH cleanup after by John McCall · 14 years ago
- 17c6c85 an objective-c++ test for -Wstrict-selector-match (radar 8127244). by Fariborz Jahanian · 14 years ago
- 0317ab0 Do not use DIGlobalVariable to emit debugging information for enums. by Devang Patel · 14 years ago
- ba55198 Fix a spurious warning when message sent to qualified-id type receiver (pr7861). by Fariborz Jahanian · 14 years ago
- 9d5600a Driver/FreeBSD: Infer the right arch name in the presence of -m32,-m64, for the by Daniel Dunbar · 14 years ago