1. 026dc96 Several related changes: by Chris Lattner · 16 years ago
  2. 186204b Warn about attribute used ignored on "extern int a __attribute__((used))". by Daniel Dunbar · 16 years ago
  3. b805dad Sema/AST support for attribute used. Patch by Anders Johnson (with small tweaks & test case)! by Daniel Dunbar · 16 years ago
  4. b235caa Start warning about unknown attributes. by Anders Carlsson · 16 years ago
  5. 05f8e47 Add a new Ignored attribute type, and use it for may_alias. by Anders Carlsson · 16 years ago
  6. e896d98 Add CodeGen support for the nodebug attribute. by Anders Carlsson · 16 years ago
  7. d87df37 Add sema support for the nodebug attribute. by Anders Carlsson · 16 years ago
  8. f98aba3 Initial implementation of arbitrary fixed-width integer types. by Eli Friedman · 16 years ago
  9. 17f194f Support __attribute__(section(<name>)) by Daniel Dunbar · 16 years ago
  10. f9201e0 Initial implementation of function overloading in C. by Douglas Gregor · 16 years ago
  11. 89941c1 Improve Sema of the cleanup attribute somewhat. by Anders Carlsson · 16 years ago
  12. 47b9a1c Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 16 years ago
  13. f6e35d0 Add sema support for the cleanup attribute. by Anders Carlsson · 16 years ago
  14. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  15. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  16. fa23c1d Implemenent objective-c's NSObject attribute as a way of ddeclaraing c-type by Fariborz Jahanian · 16 years ago
  17. 2f40270 Add full dllimport / dllexport support: both sema checks and codegen. by Anton Korobeynikov · 16 years ago
  18. 7b0a52f Sema for fastcall/stdcall stuff. Tests will follow. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  19. a89d82c Fix a comment. by Sebastian Redl · 16 years ago
  20. bc1c877 Semantics of @protocol attributes. by Fariborz Jahanian · 16 years ago
  21. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  22. f5e8834 Fix bug in attribute(nonnull) processing where not all of the parameter indices in nonnull(...) were actually processed. by Ted Kremenek · 16 years ago
  23. d162584 Change a whole lot of diagnostics to take QualType's directly by Chris Lattner · 16 years ago
  24. 08631c5 Convert IdentifierInfo's to be printed the same as DeclarationNames by Chris Lattner · 16 years ago
  25. 24b93f2 __weak ivar need not warn. by Fariborz Jahanian · 16 years ago
  26. 92e62b0 Rename IdentifierInfo::isName to ::isStr. Use a nifty trick by Chris Lattner · 16 years ago
  27. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 16 years ago
  28. 3c73c41 stop calling II::getName() unnecesarily in sema by Chris Lattner · 16 years ago
  29. 30bc965 add direct support for signed and unsigned integer arguments to diagnostics. by Chris Lattner · 16 years ago
  30. fa25bbb Switch several more Sema Diag methods over. This simplifies the by Chris Lattner · 16 years ago
  31. 46bbaca Attribute nonnull can be applied to block pointers. by Ted Kremenek · 16 years ago
  32. af668b0 Add attribute always_inline support. by Daniel Dunbar · 16 years ago
  33. d3f2c10 Improve attribute parsing & tests. by Daniel Dunbar · 16 years ago
  34. 3b0db90 Implement #pragma pack use in structure packing. The general approach by Daniel Dunbar · 16 years ago
  35. 232eb7d Implement support for the const and pure attributes. by Anders Carlsson · 16 years ago
  36. 7709182 Add parsing of the sentinel attribute. Still need to create the attribute. by Anders Carlsson · 16 years ago
  37. 3568249 Sema support for format and noreturn attributes on Objective-C methods. by Daniel Dunbar · 16 years ago
  38. 085e8f7 Add support for CFString in format attribute. by Daniel Dunbar · 16 years ago
  39. 9eae576 Finish pushing blocks attribute through the clang attribute machinery. by Steve Naroff · 16 years ago
  40. bc88745 An extremely hacky version of transparent_union support; it isn't by Eli Friedman · 16 years ago
  41. 7fb43c1 Tidy up sema processing of attribute "nonull": by Ted Kremenek · 16 years ago
  42. 6e14a8f Fix silly bug in objc_gc attribute parsing and add test case by Anders Carlsson · 16 years ago
  43. aa0d25b Add support for parsing the objc_gc attribute. Tests will come shortly. by Anders Carlsson · 16 years ago
  44. 6782fc6 Use isa instead of dyn_cast. by Anders Carlsson · 16 years ago
  45. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  46. e4858a6 More #include cleaning by Daniel Dunbar · 16 years ago
  47. 12bc692 Minor #include cleaning by Daniel Dunbar · 16 years ago
  48. 356b63a attribute "unused" also applies to functions. by Ted Kremenek · 16 years ago
  49. 3068ae0 Support __attribute__(({con,de}structor)) in Parse & Sema by Daniel Dunbar · 16 years ago
  50. b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
  51. 7379889 Implemented Sema support for attribute "unused". by Ted Kremenek · 16 years ago
  52. 6e1eb87 Use llvm::utostr_32 instead of ostringstream. by Ted Kremenek · 16 years ago
  53. 465172f Add test case for nonnull attribute. Fix indexing bug. by Ted Kremenek · 16 years ago
  54. eb2b2a3 Added sema support for the nonnull attribute. Will add test cases soon. by Ted Kremenek · 16 years ago
  55. 96329d4 Added parsing/sema support for __attribute__ ((IBOutlet)), a clang-specific attribute that the static analyzer will use to recognize what ivars are IBOutlets. by Ted Kremenek · 16 years ago
  56. 803d080 make the rest of the decl attribute processing methods be by Chris Lattner · 16 years ago
  57. 0b2f4da make most of Sema public. Sema is a class private to the Sema library by Chris Lattner · 16 years ago
  58. 0744e5f move a few methods, no other change. by Chris Lattner · 16 years ago
  59. 0bf29ad handle type attributes when converting types, not when processing decls. by Chris Lattner · 16 years ago
  60. e5c5ee1 Make ProcessDeclAttributes walk the declarator structure pulling by Chris Lattner · 16 years ago
  61. 3ff30c8 move some code from all callers of ProcessDeclAttributes into by Chris Lattner · 16 years ago
  62. f2e4bd5 more attribute refactoring/renaming, no functionality change. by Chris Lattner · 16 years ago
  63. 49e2d34 more minor tidiness. by Chris Lattner · 16 years ago
  64. 065c5a8 more cleanups, refactor HandleVectorTypeAttribute by Chris Lattner · 16 years ago
  65. 545dd34 adjust the prototypes of a bunch of decl processing methods to take by Chris Lattner · 16 years ago
  66. fbf1347 the 'mode' attribute is a decl attribute, not a type attribute. Move it to by Chris Lattner · 16 years ago
  67. 6b6b537 move decl attribute processing to a new SemaDeclAttr.cpp. by Chris Lattner · 16 years ago