1. 281481d Formatting fix. by Mike Stump · 15 years ago
  2. a0a99e0 Change CGFunctionInfo args iterator to not include the return type. by Daniel Dunbar · 15 years ago
  3. 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 15 years ago
  4. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 15 years ago
  5. a0f02aa Use the updated CommandLine api for -fno-blocks. by Mike Stump · 15 years ago
  6. ff77645 emit diagnostic when casting a ptr to a small int when doing static initialization (addresses Eli's comments I believe) by Nuno Lopes · 15 years ago
  7. 1dfa6e1 fix TryToFixInvalidVariablyModifiedType to reject negative array sizes by Nuno Lopes · 15 years ago
  8. 2b1e003 Steve set me straight on this one. GCC was right, EDG was wrong: the by Douglas Gregor · 15 years ago
  9. 88b5396 More ABI API cleanup. by Daniel Dunbar · 15 years ago
  10. d671c5a Clean up indentation. by Ted Kremenek · 15 years ago
  11. bb36d33 ABI handling API changes. by Daniel Dunbar · 15 years ago
  12. d863517 Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 15 years ago
  13. 81922f0 AnalysisConsumer: by Ted Kremenek · 15 years ago
  14. 0bb2036 Refactored code gen for ivar access in preparation for by Fariborz Jahanian · 15 years ago
  15. 275e10d Shuffle some functions around, no functionality change. by Daniel Dunbar · 15 years ago
  16. 669c9a2 Split specific_decl_iterator, which had a run-time field for by Douglas Gregor · 15 years ago
  17. 21a98b1 Change the ObjC type encoding for block pointer types to "@?" (for consistency with GCC). by Steve Naroff · 15 years ago
  18. 9a82b52 Add FIXME. by Daniel Dunbar · 15 years ago
  19. d6f0b4e Slim down the specific_decl_iterator, since NULL denotes the end of the range. Good eyes, Chris by Douglas Gregor · 15 years ago
  20. 87fd703 Check value-initializations that occur when an initializer list by Douglas Gregor · 15 years ago
  21. df8570d RewriteObjC::RewriteBlockDeclRefExpr(): Add parens to enforce precedence. This fixes <rdar://problem/6529468> clang ObjC rewriter: Need parenthesis around dereferences in rewritten Blocks. by Steve Naroff · 15 years ago
  22. 8395081 allow cast from array to int to be considered as constant by Nuno Lopes · 15 years ago
  23. c4b67ed avoid creating tmp files elsewhere by Nuno Lopes · 15 years ago
  24. f231998 fix PR3459: improve compatibility with gcc when checking for constant exprs by Nuno Lopes · 15 years ago
  25. 7f5221b Fix for PR3447: use padded sizes for computations on struct/union constants. by Eli Friedman · 15 years ago
  26. b95907d Forgot to add this test. by Anders Carlsson · 15 years ago
  27. 36b5f5e Remove unused overload of GetFunctionType. by Daniel Dunbar · 15 years ago
  28. 6f6b036 Initialize CGFunctionInfo isVariadic bit correctly. by Daniel Dunbar · 15 years ago
  29. 09796d6 Use target alignment API to set objc2's meta-data alignment. by Fariborz Jahanian · 15 years ago
  30. 21a4f62 Err, unbreak my previous "no functionality change commit", will fix properly later. by Daniel Dunbar · 15 years ago
  31. 725ad31 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 15 years ago
  32. c83c29a Update checker build. by Ted Kremenek · 15 years ago
  33. f6e35d0 Add sema support for the cleanup attribute. by Anders Carlsson · 15 years ago
  34. dd0db2a class meta-data belong to __objc_data section (in objc2 nonfragile abi). by Fariborz Jahanian · 15 years ago
  35. cf55516 Recognize class's visibility attribute and set its linkage by Fariborz Jahanian · 15 years ago
  36. c450357 x86_64 ABI: Retool classification to compute lo & hi classifications by Daniel Dunbar · 15 years ago
  37. fdbe11d Missed another mis-alignment of an objc2 meta-data. by Fariborz Jahanian · 15 years ago
  38. 734d986 Improve our handling of the second step in a user-defined conversion by Douglas Gregor · 15 years ago
  39. ad53eff Fix typo noticed by Chris. by Anders Carlsson · 15 years ago
  40. b0f90cc Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 15 years ago
  41. 014858b Setting correct alignent for objc2 meta-data. by Fariborz Jahanian · 15 years ago
  42. cdf920e x86_64 ABI: Fix more thinkos, straddling computation for complex was by Daniel Dunbar · 15 years ago
  43. b574e56 Upgrade the "excess elements in array initializer" warning to an by Douglas Gregor · 15 years ago
  44. 930d8b5 Implement and test aggregate initialization in C++. Major changes: by Douglas Gregor · 15 years ago
  45. 0f6610e add imag_info section and data (for objc2 nonfragile abi). by Fariborz Jahanian · 15 years ago
  46. 71e62a9 x86_64 ABI: Fix thinko in prev commit, 64-bit vectors should have SSE by Daniel Dunbar · 15 years ago
  47. bf98c99 Fix horrible non-termination bug in LiveVariables. The issue was that by Ted Kremenek · 15 years ago
  48. f87a0cc Generate list of implemented classes and categories in their by Fariborz Jahanian · 15 years ago
  49. bd9c4a5 DiagnosticKinds.def is gone. by Chris Lattner · 15 years ago
  50. 3f17f31 memset takes an int, not a char. by Chris Lattner · 15 years ago
  51. d4cd1b0 x86_64 ABI: Pass <1 x double> in memory. This is arguably wrong, but by Daniel Dunbar · 15 years ago
  52. 1e2b1fc Move method out-of-line. by Ted Kremenek · 15 years ago
  53. e4173c2 Fix inverted logic in ParentMap::hasParent() by Ted Kremenek · 15 years ago
  54. 65f5e64 wire up -fno-show-source-location option, patch by Alexei Svitkine! by Chris Lattner · 15 years ago
  55. 8cfd397 Code gen. for @protocol expression in the new nonfragile abi. by Fariborz Jahanian · 15 years ago
  56. 4c9a166 add testcase for PR3437 and r63405 by Chris Lattner · 15 years ago
  57. 11a76ed Remove testing -use-x86_64-abi option; current implementation is by Daniel Dunbar · 15 years ago
  58. 71d8bfb avoid emitting a bogus line marker for the top level #include by Chris Lattner · 15 years ago
  59. e33edf1 x86_64 ABI: Split small vectors which cross an eightbyte boundary. Down to 33/500 return type failures. by Daniel Dunbar · 15 years ago
  60. d079b2d Closed out a few radars that were addressed by designated initializers by Douglas Gregor · 15 years ago
  61. b8bf65e " Attached is a patch for TextDiagnosticPrinter that adds an optional by Chris Lattner · 15 years ago
  62. d7eb846 Switch Type::isAggregateType to use the C++ definition of "aggregate by Douglas Gregor · 15 years ago
  63. 6cd586d Make sure to cast the VLA size of array to the type of size_t. Fixes PR3442. by Anders Carlsson · 15 years ago
  64. f64ef62 Simplify/cleanup r63219 (based on Chris review). by Steve Naroff · 15 years ago
  65. 2612903 fix RUN line by Nuno Lopes · 15 years ago
  66. 282f753 enable test as it works by Nuno Lopes · 15 years ago
  67. 5b2c6d9 enable test as it already works by Nuno Lopes · 15 years ago
  68. b55cc63 Add -fno-blocks support. This fixes block-no-block-def.c. by Mike Stump · 15 years ago
  69. 8562ae7 x86_64 ABI: Implement classification for arrays. by Daniel Dunbar · 15 years ago
  70. 7d801ea Implement constant generation of ImplicitValueInitExprs. by Anders Carlsson · 15 years ago
  71. ba362f6 ccc: Forward -fobjc-nonfragile-abi to clang. by Daniel Dunbar · 15 years ago
  72. 071e04e update for change in API. by Chris Lattner · 15 years ago
  73. 4c921ae Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 15 years ago
  74. e620ecd Use uint64_t not unsigned for type sizes/offsets. by Daniel Dunbar · 15 years ago
  75. 3819a0b Bug fixing involving method-list in protocol meta-data (objc2 nonfragile-abi). by Fariborz Jahanian · 15 years ago
  76. 6949ce4 ccc: Add -Xclang option, rename -WA, to -Xanalyzer. by Daniel Dunbar · 15 years ago
  77. e4c0da8 ccc: Mark -combine option as unsupported. by Daniel Dunbar · 15 years ago
  78. 14553ab Fix a couple bugs: by Ted Kremenek · 15 years ago
  79. 350b5d4 ccc: Embrace destiny as a clang compiler driver. by Daniel Dunbar · 15 years ago
  80. d2ea386 Fix name of -x option for C preprocessed input; it should be by Daniel Dunbar · 15 years ago
  81. eb73213 Random bug fix related to protocl metadata in categories in non-fragile abi. by Fariborz Jahanian · 15 years ago
  82. 6818928 retain/release checker: When generating summaries for CF/CG functions, allow arguments to "escape" if they are passed to a function containing the terms "InsertValue", "SetValue", or "AddValue". This fixes <rdar://problem/6539791>. by Ted Kremenek · 15 years ago
  83. 59ebd28 ABITest: Makefile tweaks by Daniel Dunbar · 15 years ago
  84. 8448c2c Set protocol linkage and visibility correctly and by Fariborz Jahanian · 15 years ago
  85. a9c8780 Make CodeGen produce an error if we come across a non-constant initializer list that involves the GNU array-range designator extension by Douglas Gregor · 15 years ago
  86. da32009 Protocol meta-data for objc2's non-fragile abi. Lot more to do in this area. by Fariborz Jahanian · 15 years ago
  87. 28372fa diags moved, so these casts are no longer needed. by Chris Lattner · 15 years ago
  88. a518903 Hack Sema::LookupDeclInScope() to avoid calling Sema::LookupName() when parsing C/ObjC. by Steve Naroff · 15 years ago
  89. 95effa1 remove two empty files by Chris Lattner · 15 years ago
  90. 19e8e2c next round of diagnostics cleanups, moving some by Chris Lattner · 15 years ago
  91. 3498bdb Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 15 years ago
  92. 0bb7689 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 15 years ago
  93. 5d2ff63 Suppress a warning by Douglas Gregor · 15 years ago
  94. f04d69b x86_64 ABI: Handle fields / complex components which straddle by Daniel Dunbar · 15 years ago
  95. e61e95f ABITest: Fix access to array test values. by Daniel Dunbar · 15 years ago
  96. 7f102f8 x86_64 ABI: Tweak merging algorithm so that we always bail early when by Daniel Dunbar · 15 years ago
  97. cc039fe ABI: When emitting calls which return an ignored argument, make sure by Daniel Dunbar · 15 years ago
  98. 99037e5 x86_64 ABI: Implement classification for records. by Daniel Dunbar · 15 years ago
  99. 900ed55 ABITest: Fix test value generation for unions. by Daniel Dunbar · 15 years ago
  100. b0e14f2 x86_64: Support cases which map to returning multiple values in LLVM by Daniel Dunbar · 15 years ago