- 689ae01 Fix DeclRefExpr::getFoundDecl() for usages by reference. by Daniel Jasper · 13 years ago
- eaef89b Fix a crash-on-valid where a block capture copy expression was by John McCall · 13 years ago
- 5ec7e7d Add a clarifying note when a return statement is rejected because by John McCall · 13 years ago
- 9cf21ae Diagnose uses of 'alignof' on functions in -pedantic mode. by Richard Smith · 13 years ago
- c2bc61b Bring inheriting constructor implementation up-to-date with current defect by Richard Smith · 13 years ago
- 755a2ff Add some assertions to appease the static analyzer. by Jordan Rose · 13 years ago
- 0e0d009 Avoid computing the linkage too early. Don't invalidate it. by Rafael Espindola · 13 years ago
- 5c38272 ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. by Jordan Rose · 13 years ago
- 47ef466 objective-C: don't crash after diagnosing by Fariborz Jahanian · 13 years ago
- cc5788c Centralize and refine the __unknown_anytype argument rules by John McCall · 13 years ago
- f22d0ac Perform non-overload placeholder conversions on the operands by John McCall · 13 years ago
- 2edaf4e Remove superfluous null pointer check. The pointer is used prior to this check. by Ted Kremenek · 13 years ago
- c6ebda1 Teach serialized diagnostics about notes without locations. by Ted Kremenek · 13 years ago
- 7d00f00 by Joey Gouly · 13 years ago
- 3a3c4e0 Avoid implicit conversions of Optional<T> to bool. by David Blaikie · 13 years ago
- 6adc78e Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 13 years ago
- 223ca5c Prevent crash on multiple user errors (which I cannot reproduce in by Fariborz Jahanian · 13 years ago
- 25c0510 Sema: Unnest early exit and remove an unnecessary bad cast. by Benjamin Kramer · 13 years ago
- a934a02 objective-C: When implementing custom accessor method for by Fariborz Jahanian · 13 years ago
- b7444cd When marking derived classes' virtual methods ODR-used in order to trigger by Nick Lewycky · 13 years ago
- a096b14 The meat of this patch is in BuildCXXMemberCalLExpr where we make it use by Nick Lewycky · 13 years ago
- 587b348 Perform placeholder conversions on the controller of a _Generic expression. by John McCall · 13 years ago
- 6ced97a Diagnose loads of 'half' l-values in OpenCL. Patch by Joey Gouly! by John McCall · 13 years ago
- 192542c Test for virtual instead of pure here. It has the exact same effect, and John by Nick Lewycky · 13 years ago
- 9ca9101 PR15095: Use more correct source locations for the InitListExpr we fake up for by Richard Smith · 13 years ago
- 6b21696 Add some missing diagnostics for C++11 narrowing conversions. by Richard Smith · 13 years ago
- c084bd28 PR15132: Replace "address expression must be an lvalue or a function by Richard Smith · 13 years ago
- 45b5052 This patch makes "&Cls::purevfn" not an odr use. This isn't what the standard by Nick Lewycky · 13 years ago
- 4dca1d3 objc: Provide correct fixit instruction when two mismatched by Fariborz Jahanian · 13 years ago
- eb03ae2 Fix PR14881 by implementing conversion rules between int and complex int. by Bill Schmidt · 13 years ago
- 9c7eb1d Add a new -Wundefined-inline warning for inline functions which are used but not by Nick Lewycky · 13 years ago
- 60bd4be Fix grammar in comment. by Nick Lewycky · 13 years ago
- 35d2359 Fix ODR-use of a MemberExpr to check before marking a pure function used. Remove by Nick Lewycky · 13 years ago
- f2ca8ec Hoist retrieval of Expr* into caller. No functionality change. by Ted Kremenek · 13 years ago
- da16507 Also promote fp16 types to double when they're anonymous variadic arguments. by Tim Northover · 13 years ago
- be8229c Micro cleanup: use an array of const char, rather than an array of char, as the by Richard Smith · 13 years ago
- dd7f456 Add a new LangOpt NativeHalfType. This option allows for native half/fp16 by Joey Gouly · 13 years ago
- c406cb7 Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on by Richard Smith · 13 years ago
- f857950 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
- 14da440 put back diagnostics when flexible members are captured in lambdas. by Fariborz Jahanian · 13 years ago
- 5eae4ad Fix typo (again). by Fariborz Jahanian · 13 years ago
- 7a83f04 Remove lambda from my last patch. by Fariborz Jahanian · 13 years ago
- b68f7b2 Fixes typo in comment. by Fariborz Jahanian · 13 years ago
- a716a34 objectiveC blocks: It is impractical to capture by Fariborz Jahanian · 13 years ago
- f26d539 Move loop variable update. Thanks to Dmitri Gribenko for the suggestion. by Rafael Espindola · 13 years ago
- 820fa70 Mark all subsequent decls used. by Rafael Espindola · 13 years ago
- a046169 Don't warn about undefined varargs argument behavior in unreachable code. by Ted Kremenek · 13 years ago
- 042e088 Scalar shifts in the OpenCL specification (as of v. 1.2) are defined to be by David Tweed · 13 years ago
- 89645bc s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few nearby 'C++0x' comments. by Richard Smith · 13 years ago
- 2bf7fdb s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 13 years ago
- de1a487 Improve diagnostic wording for when an implicitly-deleted special member by Richard Smith · 13 years ago
- 6487335 Tweak Sema::CheckLiteralKind() to also include block literals by Ted Kremenek · 13 years ago
- 44c2a2a Change checkUnsafeAssignLiteral() to use the new Sema::CheckLiteralKind(). by Ted Kremenek · 13 years ago
- 01a33f8 Hoist logic for classifying Objective-C literals into Sema (proper) for use with other diagnostics. by Ted Kremenek · 13 years ago
- 241f451 Remove duplicate includes. by Roman Divacky · 13 years ago
- 38a549b Fix regression in r170489: when instantiating a direct initializer which is a by Richard Smith · 13 years ago
- 6928cf7 Sema: Don't emit a warning when __func__ is used in a lambda outside of a function. by Benjamin Kramer · 13 years ago
- 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
- c401755 Fix the determination of whether a capture refers to an enclosing by Douglas Gregor · 13 years ago
- 8778c28 Merge function types in C. by Rafael Espindola · 13 years ago
- e6a56db Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 13 years ago
- fbd1974 objective-C arc: load of a __weak object happens via call to by Fariborz Jahanian · 13 years ago
- 1648847 A step towards sorting out handling of triviality of special members in C++11. by Richard Smith · 13 years ago
- 37feb2d Fix DiagnoseBitwisePrecedence so it doesn't cast "-1" to the type by Eli Friedman · 13 years ago
- d81108f s/tranform/transform/ by Benjamin Kramer · 13 years ago
- ea0a39e Accept and pass arguments to __unknown_anytype in argument by John McCall · 13 years ago
- e202813 -Wobjc-literal-compare: look through implicit casts. by Jordan Rose · 13 years ago
- e10d304 PR11851 (and duplicates): Whenever a constexpr function is referenced, by Richard Smith · 13 years ago
- 40c180d When rebuilding a DependentScopeDeclRefExpr, perform a lookup into the scope by Richard Smith · 13 years ago
- db2630f Unrevert r166268, reverted in r166272, with a fix for the issue which Nick by Richard Smith · 13 years ago
- 2957489 Fix __builtin_va_arg assertion failure in ARM AAPCS. by Logan Chien · 13 years ago
- 5a1104b DR1472: A reference isn't odr-used if it has preceding initialization, by Richard Smith · 13 years ago
- 82d3ab9 Clarify wording of -Wshift-op-parentheses. by David Blaikie · 13 years ago
- 2e3b7169 Revert r166268, this fix for a crash-on-invalid introduced a rejects-valid. by Nick Lewycky · 13 years ago
- b2d6df5 PR14124: When performing template instantiation of a qualified-id outside of a by Richard Smith · 13 years ago
- eab1730 Minor tweak to last patch along with a test case. // rdar://12491143 by Fariborz Jahanian · 13 years ago
- 379e536 fixes an objc crash involving objc bool literal on by Fariborz Jahanian · 13 years ago
- bd847cc Un-revert r164907 and r164902 (+ follow-ups), 10.6 build fix to follow. by Daniel Dunbar · 13 years ago
- bec2bf1 Revert r164907 and r164902 (+ follow-ups). They broke building on 10.6. by Nico Weber · 13 years ago
- 04ea41c Fix typo correction of one qualified name to another. by David Blaikie · 13 years ago
- c2ff8e1 Provide a fixit when taking the address of an unqualified member function. by David Blaikie · 13 years ago
- 2bd991a Move Sema::PropertyIfSetterOrGetter to ObjCMethodDecl::findPropertyDecl. by Jordan Rose · 13 years ago
- dac86fd Use a single note diagnostic for all the precedent/parentheses warnings. by David Blaikie · 13 years ago
- 1d202a6 StringRef-ify Binary/UnaryOperator::getOpcodeStr by David Blaikie · 13 years ago
- 15f17cb Implement -Wshift-op-parentheses for: a << b + c by David Blaikie · 13 years ago
- 4a67508 objective-C arc: Warn under arc about a use of an ivar inside a block by Fariborz Jahanian · 13 years ago
- 5de91cc Add FP_CONTRACT support for clang. by Lang Hames · 13 years ago
- 657b5f4 -Warc-repeated-use-of-weak: check ivars and variables as well. by Jordan Rose · 13 years ago
- d393458 Add a warning (off by default) for repeated use of the same weak property. by Jordan Rose · 13 years ago
- 15681d6 Fix an edge case of mangling involving the combination of a lambda and typeid. by Eli Friedman · 13 years ago
- 1cd2305 Change the wording of the extension warning from by Dmitri Gribenko · 13 years ago
- 7ba9172 Small cleanup of literal semantic analysis: hiding 'char *' pointers behind by Dmitri Gribenko · 13 years ago
- 974c948 objective-C: when diagnosing deprecated/unavailable usage of by Fariborz Jahanian · 13 years ago
- fa9e4ba -Warc-retain-cycles: warn at variable initialization as well as assignment. by Jordan Rose · 13 years ago
- 0064c59 In debugger mode, allow comparisons between pointers and integers by Douglas Gregor · 13 years ago
- 979780f refactoring + objective-C specific test for my last patch. // rdar://12233989 by Fariborz Jahanian · 13 years ago
- 66c93f4 c: make __attribute__((unused)) transitive. by Fariborz Jahanian · 13 years ago
- 34866c7 Change the representation of builtin functions in the AST by Eli Friedman · 13 years ago
- f257857 objective-C: clang must implicitly convert by Fariborz Jahanian · 13 years ago
- f07bcc5 objective-C: make -Widiomatic-parentheses work by Fariborz Jahanian · 13 years ago