1. a84b404 Fixup key function calculations. by Mike Stump · 15 years ago
  2. 73460a3 Deduce a ConstantArrayType from a value-dependent initializer list by Douglas Gregor · 15 years ago
  3. 865d447 Draw a brighter line between "unresolved" expressions, where we have done the by John McCall · 15 years ago
  4. a7cf23a Don't issue spurious diagnostic with Obj-C fast enumeration. (radar 7409165). by Fariborz Jahanian · 15 years ago
  5. 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
  6. 23a3542 Fixup address point computations. WIP. by Mike Stump · 15 years ago
  7. 027e266 Fix crash when using --analyzer-store=region when handling initializers with nested arrays/structs whose values are not explicitly specified. Fixes <rdar://problem/7403269>. by Ted Kremenek · 15 years ago
  8. 638b9c3 Remove printf statement. by Ted Kremenek · 15 years ago
  9. 27e05ed Only fetch the ASTContext object within the assertion. by Ted Kremenek · 15 years ago
  10. 6049762 Silence -Asserts warning. by Daniel Dunbar · 15 years ago
  11. a08304a Driver: Move INPUT and UNKNOWN sentinel options into the OptParser.td file. by Daniel Dunbar · 15 years ago
  12. 498429f Patch to implement new-operators with default args. Fixes pr5547. by Fariborz Jahanian · 15 years ago
  13. cb78d88 Cope with an amusingly little anomaly with dependent types and by Douglas Gregor · 15 years ago
  14. 3f6918a Added preliminary support step for PS3 by John Thompson · 15 years ago
  15. c2bae59 Define WCHAR_MIN and WCHAR_MAX in terms of __WCHAR_WIDTH__ for consistency with by Ken Dyck · 15 years ago
  16. 63e6561 Define __WCHAR_WIDTH__ for use in stdint.h. by Ken Dyck · 15 years ago
  17. bfec4b0 Parameterize WINT_MIN and WINT_MAX with __WINT_WIDTH__ to support arbitrary by Ken Dyck · 15 years ago
  18. 7635d21 Add __WINT_WIDTH__ to paramaterize the limits of WINT_MIN and WINT_MAX in by Ken Dyck · 15 years ago
  19. 4b7d945 Construct definition of SIZE_MAX from __SIZE_WIDTH__ to support targets of by Ken Dyck · 15 years ago
  20. 7484e5d Add __SIZE_WIDTH__ to eventually replace __SIZE_TYPE__ in stdint.h. by Ken Dyck · 15 years ago
  21. 8241d73 Restore __INTMAX_TYPE__, __UINTMAX_TYPE__, __PTRDIFF_TYPE__, and by Ken Dyck · 15 years ago
  22. cf2f71f Remove __PTRDIFF_TYPE__ as it is no longer needed by stdint.h. It has been by Ken Dyck · 15 years ago
  23. 8a3e9d9 Construct the macro body of PTRDIFF_MAX and PTRDIFF_MIN from __PTRDIFF_WIDTH__. by Ken Dyck · 15 years ago
  24. d00c751 Add __PTRDIFF_WIDTH__ macro to eventually replace __PTRDIFF_TYPE__ in stdint.h. by Ken Dyck · 15 years ago
  25. ed116e9 Remove __INTPTR_TYPE__ as it is no longer needed by stdint.h, which uses by Ken Dyck · 15 years ago
  26. 4ad9685 Objective-C code completion within properties after "setter = " or by Douglas Gregor · 15 years ago
  27. 217acbf Sketch some 'clang -cc1' support, for testing parts of CompilerInvocation. by Daniel Dunbar · 15 years ago
  28. c06a8d8 Add missing dependency for CMake. by Daniel Dunbar · 15 years ago
  29. 8adfcff Sketch .td file and build system goop for OptTable based clang-cc options. by Daniel Dunbar · 15 years ago
  30. 847abaa Factor out OptTable::ParseArgs, for parsing an entire argument vector. by Daniel Dunbar · 15 years ago
  31. c59dc92 clang-cc: Remove some more llvm::cl::init arguments, by only setting values when by Daniel Dunbar · 15 years ago
  32. 4db166b Change -code-completion-debug-printer to -no-code-completion-debug-printer. by Daniel Dunbar · 15 years ago
  33. 53e8484 Switch -f{builtin,math-errno,rtti} and -analyzer-purge-dead to -...no... variants instead of using llvm::cl::init(true) arguments. by Daniel Dunbar · 15 years ago
  34. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  35. a0289fd Driver: Take option ID for {Input,Unknown}Option, to drop dependency on actual options. by Daniel Dunbar · 15 years ago
  36. 9e1f982 Driver: Introduce OptSpecifier class for protecting access to an option id. by Daniel Dunbar · 15 years ago
  37. 85615df Refine vtable, rtti and rtti name instantiation so that they follow by Mike Stump · 15 years ago
  38. e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
  39. 88bd009 This doesn't work yet. by Mike Stump · 15 years ago
  40. b32aa51 Driver: Resolve inconsistency in matching options against options which are by Daniel Dunbar · 15 years ago
  41. b827a05 Use Option::matches instead of direct ID comparison. by Daniel Dunbar · 15 years ago
  42. 264c1f8 The sub-statement of a case statement is not an unevaluated context! by Eli Friedman · 15 years ago
  43. d3c6854 Improve code completion for Objective-C message sends, so that we by Douglas Gregor · 15 years ago
  44. 5858894 Improve instantiation control for rtti data and allow key functions to by Mike Stump · 15 years ago
  45. 64bdce3 Driver: Switch to using TableGen'erated Options.inc instead of Options.def file. by Daniel Dunbar · 15 years ago
  46. 6be2b17 Refine linkage on thunks. WIP. by Mike Stump · 15 years ago
  47. 27e738d Driver: Split OptTable out into OptTable.{h,cpp} by Daniel Dunbar · 15 years ago
  48. 988358f Improve the accuracy of code completion for the attributes of an @property declaration, so that we don't produce completions for attributes that would conflict with already-specified attributes by Douglas Gregor · 15 years ago
  49. 54f0161 Improve code-completion results for the flags in an @property by Douglas Gregor · 15 years ago
  50. 10324db Do not enter forward class 'Protocol' in decl context. by Fariborz Jahanian · 15 years ago
  51. 275c2b4 Do overload resolution for compound assignment even if only the RHS is overloadable. Compound assignment may be overloaded as a non-member, and anyway the overload resolution is necessary because it triggers implicit (used-defined) conversions. Fixes PR5512, but not really the deeper issues lurking. Those are standard defects. by Sebastian Redl · 15 years ago
  52. a93b108 Rename CodeCompleteObjCProperty to something more specific. No functionality change. by Douglas Gregor · 15 years ago
  53. 424b2a5 Code completion after @dynamic by Douglas Gregor · 15 years ago
  54. 6826314 Overhaul previous-declaration and overload checking to work on lookup results by John McCall · 15 years ago
  55. 322328b Code completion for Objective-C @synthesized. by Douglas Gregor · 15 years ago
  56. 19d7073 ignore parens surounding the type when diagnosing by Fariborz Jahanian · 15 years ago
  57. 05ebda9 This patch fixes a bug in misdiagnosing correct use of pointer to data member. by Fariborz Jahanian · 15 years ago
  58. a165da0 Track overriding methods when instantiating a template class. Fixes PR5550. by Sebastian Redl · 15 years ago
  59. 1ce9cf0 Make MSVC happy. by Daniel Dunbar · 15 years ago
  60. 65bdbfa Pretend destructors are const and volatile. This allows calling them with const and/or volatile objects. Fixes PR5548. by Sebastian Redl · 15 years ago
  61. a9efada Don't generate superfluous and ambiguous built-in candidates for multi-level array subscript and arithmetic. Fixes PR5546. by Sebastian Redl · 15 years ago
  62. c3ca6ef Construct INTPTR_MIN, INTPTR_MAX, and UINTPTR_MAX from the exact-width limit by Ken Dyck · 15 years ago
  63. 08321b4 Define intptr_t and uintptr_t in terms of their equivalent exact-width types. by Ken Dyck · 15 years ago
  64. a79a2b5 Driver: Rework OptTable to have no dependency on the options it manages. by Daniel Dunbar · 15 years ago
  65. d8e0e45 Driver: Make local type name more distinct. by Daniel Dunbar · 15 years ago
  66. 1d189e1 Driver: Store Option ID field as unsigned to drop dependency on the options by Daniel Dunbar · 15 years ago
  67. d896e1a Predefine __INTPTR_WIDTH__ for future use in stdint.h. by Ken Dyck · 15 years ago
  68. eec59a7 Remove the __INTMAX_TYPE__ and __UINTMAX_TYPE__ built-in macros as they are no by Ken Dyck · 15 years ago
  69. d5b2197 Use llvm::sys::Path to check isAbsolute, instead of hard coding. Also, remove random FIXME (?). by Daniel Dunbar · 15 years ago
  70. b328c42 Improve diagnostics and recovery when parsing @synthesized definitions by Douglas Gregor · 15 years ago
  71. 832b710 Define INTMAX_C and UINTMAX_C in terms of the corresponding exact-width by Ken Dyck · 15 years ago
  72. db57ce5 Define INTMAX_MIN, INTMAX_MAX, and UINTMAX_MAX in terms of the limit macros for by Ken Dyck · 15 years ago
  73. 33ced0b Implement code completion for Objective-C category names in @interface by Douglas Gregor · 15 years ago
  74. 6d60ca9 Reflow to fit 80-col. by Mike Stump · 15 years ago
  75. 36fac07 Define intmax_t and uintmax_t as the [u]intN_t type corresponding to by Ken Dyck · 15 years ago
  76. 3393f81 Don't warn if objc method param types in declaration and by Fariborz Jahanian · 15 years ago
  77. 19df37c Trim whitespace. by Mike Stump · 15 years ago
  78. cc5306a Improve on diagnosing type mismatches because of by Fariborz Jahanian · 15 years ago
  79. 76d69bb CastsAwayConstness shouldn't care if member pointers point into different classes. Fixes PR5545. by Sebastian Redl · 15 years ago
  80. a4f6480 Driver: Switch Options.def to storing flags as a bitmask (instead of mangled by Daniel Dunbar · 15 years ago
  81. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  82. 69203e1 Fix passing stdc++ correctly in the FreeBSD toolchain support, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  83. 186696b Predefine __INTMAX_WIDTH__ for the future parameterization of INTMAX macros in by Ken Dyck · 15 years ago
  84. 25b825d Minor cleanup to member pointer handling. by Eli Friedman · 15 years ago
  85. 7d384dd Split LookupResult into its own header. by John McCall · 15 years ago
  86. 1c5c1a0 Clean up EmitPointerToDataMemberBinaryExpr a bit. by Eli Friedman · 15 years ago
  87. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  88. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  89. e56ceca Set up vtable visibility appropriately. by Mike Stump · 15 years ago
  90. 4c3b896 Make CreateOverloadedUnaryOp build the correct node for postinc/dec operators. by Eli Friedman · 15 years ago
  91. 582b037 Propagate hidden to the _ZTS symbols appropriately. WIP. by Mike Stump · 15 years ago
  92. 44b0a3e Add an assertion to catch bad calls to EmitCallArgs. by Eli Friedman · 15 years ago
  93. e4216e9 Simplify ActOnPostfixUnaryOp. by Eli Friedman · 15 years ago
  94. 88a4a62 Be sure to set visibility for ZTI symbols for classes from the class. by Mike Stump · 15 years ago
  95. 066b983 Make _ZTI symbols hidden. This speeds up the dynamic linker. by Mike Stump · 15 years ago
  96. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  97. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  98. 95ac655 Code completion for member accesses that involve Objective-C properties and instance variables by Douglas Gregor · 15 years ago
  99. a14cd111 Eliminate some completely-redundant lookups by Douglas Gregor · 15 years ago
  100. f43fb72 PR5520: Make sure to check whether the base type is complete before looking for by Eli Friedman · 15 years ago