1. ebf9ed3 Fix a crash during meta-data generation of objc2's nonfragile abi. by Fariborz Jahanian · 15 years ago
  2. 2ff4478 Some minor tweaks and additional tests for rvalue references by Douglas Gregor · 15 years ago
  3. 049853d Driver: Switch to using -include-pth. by Daniel Dunbar · 15 years ago
  4. d5b918e Update test case. by Daniel Dunbar · 15 years ago
  5. f469557 More super dot-syntax property implementation by Fariborz Jahanian · 15 years ago
  6. b82dcd8 Fix <rdar://problem/6703892> by not warning about self-comparisons of enum by Ted Kremenek · 15 years ago
  7. 600cfab Add test case for '-include-pth'. by Ted Kremenek · 15 years ago
  8. 8e5d232 Implement ir gen. for setter/getter applied to 'super' by Fariborz Jahanian · 15 years ago
  9. e966d9a add tests for the various .S bugs I fixed on wednesday. by Chris Lattner · 15 years ago
  10. 15154b4 rename this test from .S to .c so that it gets run. by Chris Lattner · 15 years ago
  11. 8cac5f7 Driver: Add and use darwin::Assemble tool. by Daniel Dunbar · 15 years ago
  12. a645796 Allow flexible array initializers that are not surrounded by by Douglas Gregor · 15 years ago
  13. 5ef122e Variables marked as "extern" can actually have internal linkage if by Douglas Gregor · 15 years ago
  14. c505d4f Add test cases for PR 3820. by Ted Kremenek · 15 years ago
  15. 2ce1be0 When looking for property name (or getter method) in a by Fariborz Jahanian · 15 years ago
  16. 13d7a32 If a function is declared as, e.g., by Douglas Gregor · 15 years ago
  17. 5953d8b Introduce a new expression type, UnresolvedDeclRefExpr, that describes by Douglas Gregor · 15 years ago
  18. 5e1e1f9 IRgen support for alias of global variable. - PR3818. by Daniel Dunbar · 15 years ago
  19. 24c46b3 Print the context of tag types as part of pretty-printing, e.g., by Douglas Gregor · 15 years ago
  20. bad3518 Generalize printing of nested-name-specifier sequences for use in both by Douglas Gregor · 15 years ago
  21. e625893 Extend the use of QualifiedNameType to the creation of class template by Douglas Gregor · 15 years ago
  22. e4e5b05 Introduce a representation for types that we referred to via a by Douglas Gregor · 15 years ago
  23. 7237459 Fix PR 3836 by eagerly assuming symbolic constraints returned by unary '!'. by Ted Kremenek · 15 years ago
  24. 5697aa0 Driver: Fix bug in translating -O to clang, add clang-translation test case. by Daniel Dunbar · 15 years ago
  25. 622bfc8 Add simple test case to make sure driver can generate executables. by Daniel Dunbar · 15 years ago
  26. 38e24c7 objc: Implemented variables declared in class interface by Fariborz Jahanian · 15 years ago
  27. ec099f1 Fix crash reported in <rdar://problem/6695527>. We now have by Ted Kremenek · 15 years ago
  28. ddf4d78 Driver: Update test case. by Daniel Dunbar · 15 years ago
  29. a88620c added type dependent testcase by Gabor Greif · 15 years ago
  30. 9a2f1ac Add version information to ISO style test results. by Mike Stump · 15 years ago
  31. 0ac86f0 PR3835: Interaction with ABI structure passing can inhibit by Daniel Dunbar · 15 years ago
  32. 40f9292 fix the more complex cases by actually codegen'ing the right expr :) by Chris Lattner · 15 years ago
  33. 75dfeda add codegen support for casting an element to a union. by Chris Lattner · 15 years ago
  34. b8df0b5 remove two xfailed tests. These aren't doing any good for us until serialization is revisited. by Chris Lattner · 15 years ago
  35. f8575aa Add codegen support for aggregate BlockDeclRefExprs. by Mike Stump · 15 years ago
  36. 862a2c5 Ignore weak import on properties. by Mike Stump · 15 years ago
  37. 8cc9d08 fix PR3809, codegen for inc/dec of function pointers. by Chris Lattner · 15 years ago
  38. c3953a6 teach codegen to handle noop casts as lvalues. by Chris Lattner · 15 years ago
  39. 99c7622 Fix -E mismatch; an identifier followed by a numeric constant does not by Daniel Dunbar · 15 years ago
  40. c57bc59 add test case. by Zhongxing Xu · 15 years ago
  41. 5796bf4 Driver: Add test for binding of precompile; exposed bug due to my by Daniel Dunbar · 15 years ago
  42. ec29d36 Driver: Implement JoinedAndSeparateArg::getValue and add parsing test case. by Daniel Dunbar · 15 years ago
  43. 6c473c8 cleanup instantiation code, tighten testcase by Gabor Greif · 15 years ago
  44. e7783ab Fix failing test case. by Anders Carlsson · 15 years ago
  45. 087edcf instantiate ?: expressions by Gabor Greif · 15 years ago
  46. d46f0ac Driver: Add test case for -ccc-clang-archs (which, it turns out, was inverted). by Daniel Dunbar · 15 years ago
  47. a35b1d5 Small sanity-checking testcase by Douglas Gregor · 15 years ago
  48. 9d07031 Driver: Add test case for various parts of binding (no-integrated-cpp, by Daniel Dunbar · 15 years ago
  49. e247cba Test had extra line which was masking actual failures. by Daniel Dunbar · 15 years ago
  50. 1a172b8 Driver: Add test for pipelining for analyzer and precompiler. by Daniel Dunbar · 15 years ago
  51. 897cd90 don't crash when sentinel attribute is used on function without a prototype, by Chris Lattner · 15 years ago
  52. baf0775 Driver: Make sure to get the default arch name from the tool chain, not the by Daniel Dunbar · 15 years ago
  53. 879fd49 Implement instantiation of enums within class templates. This isn't by Douglas Gregor · 15 years ago
  54. 0ae7b2b Initialize the cleanup.dst variable if necessary. Fixes PR3789. by Anders Carlsson · 15 years ago
  55. 4598ffa We want to grep the output, not the input :-) by Anders Carlsson · 15 years ago
  56. 7c80bd6 Almost complete implementation of rvalue references. One bug, and a few unclear areas. Maybe Doug can shed some light on some of the fixmes. by Sebastian Redl · 15 years ago
  57. f257b61 Check signedness of bitfield sizes. by Anders Carlsson · 15 years ago
  58. 05532f2 Parser support for rvalue references. by Sebastian Redl · 15 years ago
  59. 76b1c84 (Hopefully) instantiate dependent array types correctly. by Anders Carlsson · 15 years ago
  60. 94b15fb Handle static_asserts when instantiating structs. by Anders Carlsson · 15 years ago
  61. 85c4910 Don't accept '$' in identifiers in assembler-with-cpp mode. by Daniel Dunbar · 15 years ago
  62. c308241 Handle dependent types/exprs in static_assert expressions. by Anders Carlsson · 15 years ago
  63. fb31176 More static_assert work. Check that the assert expr is valid and show an error if it's false. Create the declaration and add it to the current context. by Anders Carlsson · 15 years ago
  64. f80a9d5 Check for overflow and signedness problems with template by Douglas Gregor · 15 years ago
  65. bc736fc Implement template instantiation for the prefix unary operators. As by Douglas Gregor · 15 years ago
  66. 7f28a9c Do up codegen for function static data and externs in functions in block by Mike Stump · 15 years ago
  67. 0d794b2 Force triple for a couple test cases. by Daniel Dunbar · 15 years ago
  68. a66b4df add a testcase for recursion through blocks pointers, rdar://6676764. by Chris Lattner · 15 years ago
  69. 7c175fb fix PR3798 by ignoring all diagnostics generated while repreprocessing a file in rewrite macros. by Chris Lattner · 15 years ago
  70. 940bd83 Devious test-case involved overload resolution and ADL during template instantiation. by Douglas Gregor · 15 years ago
  71. 73bf6a9 Driver: Desensitize test to location of input. by Daniel Dunbar · 15 years ago
  72. ba49817 Implement template instantiation for several more kinds of expressions: by Douglas Gregor · 15 years ago
  73. 83df91b Driver: Test pipelining for universal builds. by Daniel Dunbar · 15 years ago
  74. 8be2a67 Fix PR 3677 [retain checker]: custom 'allocWithZone' methods should be allowed by Ted Kremenek · 15 years ago
  75. 83dd21f Driver: Fix '-x none' handling. by Daniel Dunbar · 15 years ago
  76. 810f6d5 introduce a new -fheinous-gnu-extensions flag that enables really by Chris Lattner · 15 years ago
  77. 6ae8a36 Add a hack in the analyzer to recover some path-sensitivity at branch by Ted Kremenek · 15 years ago
  78. d8eb456 Reimplement fix for <rdar://problem/6451399> problems with labels and blocks. by Steve Naroff · 15 years ago
  79. caaacec Remove ActiveScope (revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65694 and http://llvm.org/viewvc/llvm-project?view=rev&revision=66741). by Steve Naroff · 15 years ago
  80. 610e81d Fix failure reported by Sebastian of test/Analysis/ptr-arith.c when the target by Ted Kremenek · 15 years ago
  81. 146a458 Fix test. by Fariborz Jahanian · 15 years ago
  82. 3b8a652 Fixed an ir-gen bug related to strong-cast generation of by Fariborz Jahanian · 15 years ago
  83. e3c75e0 Fix spelling error, and add target triplet to header. by Mike Stump · 15 years ago
  84. 039df91 When testing with VERBOSE=0, report results in the ISO format. We by Mike Stump · 15 years ago
  85. df03251 Implement template instantiation for builtin binary operators by Douglas Gregor · 15 years ago
  86. 2e050f1 Use paropery's setter attribute name as the selector for the property setter. by Fariborz Jahanian · 15 years ago
  87. e6fbdf5 Fix crash when using TypedViewRegions and ObjCQualifiedIdTypes (TypedViewRegion::getLValueType() was not implemented). by Ted Kremenek · 15 years ago
  88. a0e500d Straw man for instantiation of expressions. Use it to instantiate the by Douglas Gregor · 15 years ago
  89. 50f4f46 Add Diagnostic files for Frontend and move a couple errors over. by Daniel Dunbar · 15 years ago
  90. e8cba00 Add comments to test case. by Zhongxing Xu · 15 years ago
  91. 656de63 Fix various problems with matching out-of-line definitions of static by Douglas Gregor · 15 years ago
  92. 021c3b3 Move most of the checking from ActOnCXXMemberDeclarator to other, more general routines. This is a step toward separating the checking logic from Declarators, which in turn is required for template instantiation. by Douglas Gregor · 15 years ago
  93. e06a75f x86_32 ABI: Don't try and expand structures with bitfields. by Daniel Dunbar · 15 years ago
  94. 335c680 Implement FIXME related to <rdar://problem/6496506> Implement class setter/getter for properties. by Steve Naroff · 15 years ago
  95. 3cf538d Implement basic template instantiation for fields. Reshuffle checking by Douglas Gregor · 15 years ago
  96. 344d4c8 Fix StmtIterator bug reported in PR 3780 where a VLA within a DeclGroup would by Ted Kremenek · 15 years ago
  97. 4fdf1fa Add basic, hackish support for instantiation of typedefs in a class by Douglas Gregor · 15 years ago
  98. f178728 Fix <rdar://problem/6655054> clang issues bogus error on property usage in a dot-syntax. by Steve Naroff · 15 years ago
  99. 1ca6694 Fix <rdar://problem/6578665> user declared setter method should be used when using property syntx. by Steve Naroff · 15 years ago
  100. 3c4b379 This test case checks if we get the right rvalue type of a TypedViewRegion. by Zhongxing Xu · 15 years ago