1. a88cefd Added struct/class syntactic info for c++0x scoped enum. by Abramo Bagnara · 14 years ago
  2. 722109c Add some warning messages about invalid use of common/nocommon attributes. by Eric Christopher · 14 years ago
  3. a3998bd When we're performing an explicit cast of some sort, don't complain by Douglas Gregor · 14 years ago
  4. fce5656 Do not change the size of LookupResult::Filter based on the NDEBUG by Douglas Gregor · 14 years ago
  5. a6cf1e7 Add support for the common and nocommon attributes. by Eric Christopher · 14 years ago
  6. a878cda Perform lvalue-to-rvalue at the end of an expression statement in C. by John McCall · 14 years ago
  7. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  8. de3deea Swap order of checking for compatible vector types. by Bob Wilson · 14 years ago
  9. 7e44e3f Make TypeLocBuilder an implementation detail of Sema. Nobody else should be using it by Douglas Gregor · 14 years ago
  10. 1ceee5c Sema/AST work for capturing copy init expression by Fariborz Jahanian · 14 years ago
  11. f48f367 80-col fixups. by Eric Christopher · 14 years ago
  12. da80f74 Improve our handling of cv-qualifiers in Objective-C pointer by Douglas Gregor · 14 years ago
  13. d11617f Improve the diagnostic when the fixed underlying type of a by Douglas Gregor · 14 years ago
  14. 0ae287a Restore the lvalue-to-rvalue conversion patch with a minimal fix. by John McCall · 14 years ago
  15. ced7671 Basic, Sema: add support for CUDA location attributes by Peter Collingbourne · 14 years ago
  16. 2600503 When unknown method is sent to a receiver of by Fariborz Jahanian · 14 years ago
  17. 26e10be Follow through references to catch returned stack addresses, local blocks, label addresses or references to temporaries, e.g: by Argyrios Kyrtzidis · 14 years ago
  18. 20fbe7c L-value to r-value conversion is not ready for prime-time. by John McCall · 14 years ago
  19. 67aba81 Such function decls,as objc's objc_msgSend, builtins in by Fariborz Jahanian · 14 years ago
  20. 7e48579 Introduce an r-value to l-value cast kind. I'm not promising anything by John McCall · 14 years ago
  21. 15d5c83 Fix bug in r120299 spotted by dgregor. by Nico Weber · 14 years ago
  22. 9b4b9d6 Fix another case of giving the wrong value kind to a dependent cast to by John McCall · 14 years ago
  23. d976ca4 Revert r120331 since it causes spurious warnings and a possible assertion hit when self-host. by Argyrios Kyrtzidis · 14 years ago
  24. 8b2f01b Emit warnings if we are returning a reference to a local temporary. by Argyrios Kyrtzidis · 14 years ago
  25. 08e41a6 Always use a function's decl context when building default arguments. Fixes http://http://llvm.org/pr8479. by Nico Weber · 14 years ago
  26. 8a72621 Revert r120063, it was wrong. by John McCall · 14 years ago
  27. 7ff776e Revert parts of r120266 that I did not mean to commit by Nico Weber · 14 years ago
  28. 6bb4dcb Minor whitespace and comment fixes. No functionality change. by Nico Weber · 14 years ago
  29. f978000 Allow access to non-static members without an object in sizeof expressions, in C++0x. Patch by Jakub Wieczorek. by Sebastian Redl · 14 years ago
  30. a21e06c For internal consistency's sake, compute the value kind of a dependent cast by John McCall · 14 years ago
  31. 2a5f99e Tie DefineVTablesUsed() in with recursive function instantiation so that we emit by Nick Lewycky · 14 years ago
  32. 7eb0a9e Switch a lot of call-sites over to using the new value-kind calculations. by John McCall · 14 years ago
  33. fe4ea55 Redeclarations of using declarations are not okay in function scopes. by John McCall · 14 years ago
  34. dfa1edb A few tweaks to the value-kind computation: by John McCall · 14 years ago
  35. 7a73002 Remove static_casts from SemaDeclAttr.cpp by Peter Collingbourne · 14 years ago
  36. 8e161ed Microsoft C anonymous struct implementation. by Francois Pichet · 14 years ago
  37. 253e80b Fix the source range of CXXNewExprs. Fixes http://llvm.org/pr8661. by Nico Weber · 14 years ago
  38. d981146 Fix a bunch of IndirectFieldDecl-related warnings. by Benjamin Kramer · 14 years ago
  39. 87c2e12 Major anonymous union/struct redesign. by Francois Pichet · 14 years ago
  40. 44aa1f3 Revert r119838 "Don't warn for empty 'if' body if there is a macro that expands to nothing" by Argyrios Kyrtzidis · 14 years ago
  41. 7663f39 A bundle of whitespace changes, separated out from the functional changes. by Nick Lewycky · 14 years ago
  42. a25b6a4 Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: by Argyrios Kyrtzidis · 14 years ago
  43. 0bc5c66 objc_msgSend is not a builtin type in non-objc mode. Fixes //rdar://8686888 by Fariborz Jahanian · 14 years ago
  44. 8fc32d2 Refactoring. Get FunctionScopeInfo to use DiagnosticErrorTrap. by Argyrios Kyrtzidis · 14 years ago
  45. 9c4eb1f Refactoring. by Argyrios Kyrtzidis · 14 years ago
  46. 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 14 years ago
  47. 0943168 Add an assertion, fix a whole bunch of bugs, comment the assertion by John McCall · 14 years ago
  48. f4bed3f Remove the getDiagnosticLevel check since it doesn't buy us much. by Argyrios Kyrtzidis · 14 years ago
  49. 45ab4b5 In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see by Craig Silverstein · 14 years ago
  50. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  51. aa4fe05 comparison of AltiVec vectors now gives bool result (fix for 7533) by Anton Yartsev · 14 years ago
  52. 1380a14 -Rename -Wargument-larger-than -> -Wlarge-by-value-copy by Argyrios Kyrtzidis · 14 years ago
  53. 3532fdd Introduce option -Wargument-larger-than[=N] which warns about function definitions if they take by-value by Argyrios Kyrtzidis · 14 years ago
  54. cf54426 Do not produce "purely informative" code completion results for by Douglas Gregor · 14 years ago
  55. de26760 Warn if direct accessing synthesized ivar backing the property in by Fariborz Jahanian · 14 years ago
  56. 47d512c Don't emit warn_logical_and_in_logical_or for cases like "a && b || 0". by Argyrios Kyrtzidis · 14 years ago
  57. d92ccaa Don't emit warn_logical_and_in_logical_or for macros. Fixes rdar://8678458 by Argyrios Kyrtzidis · 14 years ago
  58. 567bb71 Don't warn for parentheses for the '&&' inside '||' for cases like: by Argyrios Kyrtzidis · 14 years ago
  59. 4659e1e Drop the warning about __attribute__((may_alias)) being used by Dan Gohman · 14 years ago
  60. 08f92e3 a metric ton of refactoring later, Sema::getLocationOfStringLiteralByte by Chris Lattner · 14 years ago
  61. 0833dd0 propagate preprocessor out of StringLiteralParser. It is now by Chris Lattner · 14 years ago
  62. 6c66f07 push use of Preprocessor out farther. by Chris Lattner · 14 years ago
  63. ca1475e push use of Preprocessor out of getOffsetOfStringByte by Chris Lattner · 14 years ago
  64. 91f54ce refactor the interface to StringLiteralParser::getOffsetOfStringByte, by Chris Lattner · 14 years ago
  65. a4ffd85 For an Objective-C @synthesize statement, e.g., by Douglas Gregor · 14 years ago
  66. 34c2630 Front-end support for __attribute__((may_alias)). This is not by Dan Gohman · 14 years ago
  67. bee77f7 Warn about arg1 && arg2 || arg3, as GCC 4.3+ does. Fixes rdar://8659922 by Argyrios Kyrtzidis · 14 years ago
  68. e220455 Implements __block API for c++ objects. There is still by Fariborz Jahanian · 14 years ago
  69. 9263a30 Fix PR8625 and correctly interpret member-calls to static members when by Chandler Carruth · 14 years ago
  70. 07d7e7a Re-work the handling of implicit 'this' arguments and silly GCC-style attribute by Chandler Carruth · 14 years ago
  71. 64ccf24 Improve diagnostic for calling non-const method on const object. Fixes rdar://7743000 by Argyrios Kyrtzidis · 14 years ago
  72. e2b7688 Kill CK_Unknown and flesh out the documentation for the existing CastKinds. by John McCall · 14 years ago
  73. 1c23e91 Kill off the remaining places which generate CK_Unknown casts. by John McCall · 14 years ago
  74. 916c870 Add an ExternalASTSource hook to complete a type on demand. by John McCall · 14 years ago
  75. 4211bb6 Add support for "neon_vector_type" and "neon_polyvector_type" attributes by Bob Wilson · 14 years ago
  76. 56affbc Fix a comment typo. by Bob Wilson · 14 years ago
  77. 7cd7d1a Add a new expression kind, OpaqueValueExpr, which is useful for by John McCall · 14 years ago
  78. 8d706ec Implement C++0x [temp.func.order]p3 (aka DR532) properly. In by Douglas Gregor · 14 years ago
  79. 0c6d28d Yes, vector conversions are bitcasts. by John McCall · 14 years ago
  80. daa8e4e Assorted work leading towards the elimination of CK_Unknown. by John McCall · 14 years ago
  81. f3ea8cf Add a few more complex-related cast kinds that arise due to arbitrary by John McCall · 14 years ago
  82. ae2cf76 When complaining about ambiguous overload resolution for a unary or by Douglas Gregor · 14 years ago
  83. 7d14d38 When we're type-checking the result of calling a conversion function by Douglas Gregor · 14 years ago
  84. 2bb5d00 Introduce five new cast kinds for various conversions into and by John McCall · 14 years ago
  85. cf33b24 Bring UsualArithmeticConversionsType back into Sema and cast the by John McCall · 14 years ago
  86. 00071ec Pre-compute all possible usual-arithmetic-conversions results for the by John McCall · 14 years ago
  87. 72a0141 Store the list of arithmetic types as a static array of member pointers by John McCall · 14 years ago
  88. 404cd16 Introduce a null-to-pointer implicit cast kind. by John McCall · 14 years ago
  89. 77bc572 Implement C++ [over.match.funcs]p4 as it concerns partial ordering of by Douglas Gregor · 14 years ago
  90. 43fed0d Replace one hack with a different hack: strip out the ObjectType by John McCall · 14 years ago
  91. 8ff338b When performing initialization of a copy of a temporary object, use by Douglas Gregor · 14 years ago
  92. 91b6014 Undo a refactor-o and base the bitfield-truncation warning on the by John McCall · 14 years ago
  93. 15d7d12 Extend the bitfield-truncation warning to initializations. by John McCall · 14 years ago
  94. b934c2d Unnest; no functionality change. by John McCall · 14 years ago
  95. e27e9d6 Adding couple of Block API, a bug fix and a test change, all for blocks. wip. by Fariborz Jahanian · 14 years ago
  96. 1844a6e When -Wconversion computes the range of a type, it uses the (bit-)range by John McCall · 14 years ago
  97. e86d78c Add a variant of GCC-style vector types for ARM NEON. by Bob Wilson · 14 years ago
  98. d65587f Instantiate class member template partial specialization declarations by Douglas Gregor · 14 years ago
  99. 2a28914 Check for duplicate declaration of a property in current and by Fariborz Jahanian · 14 years ago
  100. 5de74d1 Propagate the deprecated and unavailable attributes from a by John McCall · 14 years ago