1. 49f4e1c It's kindof silly that ExtQuals has an ASTContext&, and we can use that by John McCall · 14 years ago
  2. eb0eb49 Use TypeAlignment constant rather than fixed alignment of 8 by Douglas Gregor · 14 years ago
  3. 90f1450 Treat visibility on an enclosing namespace as a non-explicit source of by John McCall · 14 years ago
  4. db67e2f Bind the result of a property fetch to a temporary. by John McCall · 14 years ago
  5. bfe5788 Refactored/cleanedup ActOnFunctionDeclarator by Fariborz Jahanian · 14 years ago
  6. 7344921 Eliminate duplicate code completions for properties. by Douglas Gregor · 14 years ago
  7. 70c2335 Don't walk the translation unit context to produce protocol names when by Douglas Gregor · 14 years ago
  8. 40e1775 Fix PR8760: IndirectFieldDecl Type was not updated during template instantiation. by Francois Pichet · 14 years ago
  9. d954504 A typename specifier can end up referring to a unresolved using by Douglas Gregor · 14 years ago
  10. f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  11. 241d558 Bump up property conversion earlier in the initialization process. Fixes by John McCall · 14 years ago
  12. f5fe292 Fix PR8720 by printing an error message with a substring that the gcc testsuite searches for. by Rafael Espindola · 14 years ago
  13. 9f71a8f PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and by Jay Foad · 14 years ago
  14. 6f18fca Kill FullExpr, as it was not, in fact, used anywhere in the code base. by John McCall · 14 years ago
  15. 53c374f Use Sema::MaybeCreateExprWithCleanups() only after we've checked for a NULL/invalid expression by Douglas Gregor · 14 years ago
  16. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  17. 143c7ac Objective-C pointer conversions to 'id' or qualified 'id' subsume by Douglas Gregor · 14 years ago
  18. 409fa9a Split out a function to do lvalue conversion on objects; this is basically by John McCall · 14 years ago
  19. 7e112c0 Remove a fixme which was fixed in a previous commit. by Argyrios Kyrtzidis · 14 years ago
  20. 40c2913 Do unary conversions on vararg arguments and *then* special-case float. by John McCall · 14 years ago
  21. 223ae5c Use Sema's MarkDeclarationReferenced, which takes care of templates, instead of calling Decl's setUsed directly. by Argyrios Kyrtzidis · 14 years ago
  22. f0b0ccc Use the source location of the parameter, when it makes sense, for diagnostics in HandleCleanupAttr. by Argyrios Kyrtzidis · 14 years ago
  23. 894aed9 Un-templatetize this method. It's definition is out of line in the .cpp file, by Chandler Carruth · 14 years ago
  24. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  25. 01b2e4e Clarify the logic for when to build an overloaded binop. In particular, by John McCall · 14 years ago
  26. 85515d6 First pass at implementing the intent of ANSI C DR106. by John McCall · 14 years ago
  27. 9ec9445 dyn_cast else unreachable -> cast by John McCall · 14 years ago
  28. 00eb3f9 More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: by Francois Pichet · 14 years ago
  29. 74e40b7 Don't crash when initializing a subaggregate in C from a property r-value. by John McCall · 14 years ago
  30. 0e800c9 Remove some defensive calls to EmitLoadOfPropertyRefLValue that shouldn't by John McCall · 14 years ago
  31. abc56c7 When deciding whether to complain about the type of a boolean condition, use by John McCall · 14 years ago
  32. f6a1648 Although we currently have explicit lvalue-to-rvalue conversions, they're by John McCall · 14 years ago
  33. 0982136 Implement -cl-single-precision-constant by Peter Collingbourne · 14 years ago
  34. ae3038c Mark functions referenced by 'cleanup' attribute as used. Fixes rdar://8728293 by Argyrios Kyrtzidis · 14 years ago
  35. 74b2756 Diagnose when accessing property in a class method and by Fariborz Jahanian · 14 years ago
  36. 6c572f1 Fixed typo. by Abramo Bagnara · 14 years ago
  37. a88cefd Added struct/class syntactic info for c++0x scoped enum. by Abramo Bagnara · 14 years ago
  38. 722109c Add some warning messages about invalid use of common/nocommon attributes. by Eric Christopher · 14 years ago
  39. a3998bd When we're performing an explicit cast of some sort, don't complain by Douglas Gregor · 14 years ago
  40. fce5656 Do not change the size of LookupResult::Filter based on the NDEBUG by Douglas Gregor · 14 years ago
  41. a6cf1e7 Add support for the common and nocommon attributes. by Eric Christopher · 14 years ago
  42. a878cda Perform lvalue-to-rvalue at the end of an expression statement in C. by John McCall · 14 years ago
  43. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  44. de3deea Swap order of checking for compatible vector types. by Bob Wilson · 14 years ago
  45. 7e44e3f Make TypeLocBuilder an implementation detail of Sema. Nobody else should be using it by Douglas Gregor · 14 years ago
  46. 1ceee5c Sema/AST work for capturing copy init expression by Fariborz Jahanian · 14 years ago
  47. f48f367 80-col fixups. by Eric Christopher · 14 years ago
  48. da80f74 Improve our handling of cv-qualifiers in Objective-C pointer by Douglas Gregor · 14 years ago
  49. d11617f Improve the diagnostic when the fixed underlying type of a by Douglas Gregor · 14 years ago
  50. 0ae287a Restore the lvalue-to-rvalue conversion patch with a minimal fix. by John McCall · 14 years ago
  51. ced7671 Basic, Sema: add support for CUDA location attributes by Peter Collingbourne · 14 years ago
  52. 2600503 When unknown method is sent to a receiver of by Fariborz Jahanian · 14 years ago
  53. 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
  54. 20fbe7c L-value to r-value conversion is not ready for prime-time. by John McCall · 14 years ago
  55. 67aba81 Such function decls,as objc's objc_msgSend, builtins in by Fariborz Jahanian · 14 years ago
  56. 7e48579 Introduce an r-value to l-value cast kind. I'm not promising anything by John McCall · 14 years ago
  57. 15d5c83 Fix bug in r120299 spotted by dgregor. by Nico Weber · 14 years ago
  58. 9b4b9d6 Fix another case of giving the wrong value kind to a dependent cast to by John McCall · 14 years ago
  59. d976ca4 Revert r120331 since it causes spurious warnings and a possible assertion hit when self-host. by Argyrios Kyrtzidis · 14 years ago
  60. 8b2f01b Emit warnings if we are returning a reference to a local temporary. by Argyrios Kyrtzidis · 14 years ago
  61. 08e41a6 Always use a function's decl context when building default arguments. Fixes http://http://llvm.org/pr8479. by Nico Weber · 14 years ago
  62. 8a72621 Revert r120063, it was wrong. by John McCall · 14 years ago
  63. 7ff776e Revert parts of r120266 that I did not mean to commit by Nico Weber · 14 years ago
  64. 6bb4dcb Minor whitespace and comment fixes. No functionality change. by Nico Weber · 14 years ago
  65. 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
  66. a21e06c For internal consistency's sake, compute the value kind of a dependent cast by John McCall · 14 years ago
  67. 2a5f99e Tie DefineVTablesUsed() in with recursive function instantiation so that we emit by Nick Lewycky · 14 years ago
  68. 7eb0a9e Switch a lot of call-sites over to using the new value-kind calculations. by John McCall · 14 years ago
  69. fe4ea55 Redeclarations of using declarations are not okay in function scopes. by John McCall · 14 years ago
  70. dfa1edb A few tweaks to the value-kind computation: by John McCall · 14 years ago
  71. 7a73002 Remove static_casts from SemaDeclAttr.cpp by Peter Collingbourne · 14 years ago
  72. 8e161ed Microsoft C anonymous struct implementation. by Francois Pichet · 14 years ago
  73. 253e80b Fix the source range of CXXNewExprs. Fixes http://llvm.org/pr8661. by Nico Weber · 14 years ago
  74. d981146 Fix a bunch of IndirectFieldDecl-related warnings. by Benjamin Kramer · 14 years ago
  75. 87c2e12 Major anonymous union/struct redesign. by Francois Pichet · 14 years ago
  76. 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
  77. 7663f39 A bundle of whitespace changes, separated out from the functional changes. by Nick Lewycky · 14 years ago
  78. 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
  79. 0bc5c66 objc_msgSend is not a builtin type in non-objc mode. Fixes //rdar://8686888 by Fariborz Jahanian · 14 years ago
  80. 8fc32d2 Refactoring. Get FunctionScopeInfo to use DiagnosticErrorTrap. by Argyrios Kyrtzidis · 14 years ago
  81. 9c4eb1f Refactoring. by Argyrios Kyrtzidis · 14 years ago
  82. 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 14 years ago
  83. 0943168 Add an assertion, fix a whole bunch of bugs, comment the assertion by John McCall · 14 years ago
  84. f4bed3f Remove the getDiagnosticLevel check since it doesn't buy us much. by Argyrios Kyrtzidis · 14 years ago
  85. 45ab4b5 In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see by Craig Silverstein · 14 years ago
  86. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  87. aa4fe05 comparison of AltiVec vectors now gives bool result (fix for 7533) by Anton Yartsev · 14 years ago
  88. 1380a14 -Rename -Wargument-larger-than -> -Wlarge-by-value-copy by Argyrios Kyrtzidis · 14 years ago
  89. 3532fdd Introduce option -Wargument-larger-than[=N] which warns about function definitions if they take by-value by Argyrios Kyrtzidis · 14 years ago
  90. cf54426 Do not produce "purely informative" code completion results for by Douglas Gregor · 14 years ago
  91. de26760 Warn if direct accessing synthesized ivar backing the property in by Fariborz Jahanian · 14 years ago
  92. 47d512c Don't emit warn_logical_and_in_logical_or for cases like "a && b || 0". by Argyrios Kyrtzidis · 14 years ago
  93. d92ccaa Don't emit warn_logical_and_in_logical_or for macros. Fixes rdar://8678458 by Argyrios Kyrtzidis · 14 years ago
  94. 567bb71 Don't warn for parentheses for the '&&' inside '||' for cases like: by Argyrios Kyrtzidis · 14 years ago
  95. 4659e1e Drop the warning about __attribute__((may_alias)) being used by Dan Gohman · 14 years ago
  96. 08f92e3 a metric ton of refactoring later, Sema::getLocationOfStringLiteralByte by Chris Lattner · 14 years ago
  97. 0833dd0 propagate preprocessor out of StringLiteralParser. It is now by Chris Lattner · 14 years ago
  98. 6c66f07 push use of Preprocessor out farther. by Chris Lattner · 14 years ago
  99. ca1475e push use of Preprocessor out of getOffsetOfStringByte by Chris Lattner · 14 years ago
  100. 91f54ce refactor the interface to StringLiteralParser::getOffsetOfStringByte, by Chris Lattner · 14 years ago