1. cce4224 fix indentation by Chris Lattner · 16 years ago
  2. 1c51d47 In C++, an empty parameter list indicates a function that takes no parameters. by Argiris Kirtzidis · 16 years ago
  3. 7aa5475 First wave of changes to support "blocks" (an extension to C). by Steve Naroff · 16 years ago
  4. 769e730 Do typechecking and codegen for K&R-style function declarations by Eli Friedman · 16 years ago
  5. 31fccaf warn when someone tries to make an array of ObjC interfaces instead of array by Chris Lattner · 16 years ago
  6. e0ad215 More #include cleaning by Daniel Dunbar · 16 years ago
  7. de30073 More #include cleaning by Daniel Dunbar · 16 years ago
  8. cc7b160 More #include cleaning by Daniel Dunbar · 16 years ago
  9. 1ed03e7 Implement support for the 'wchar_t' C++ type. by Argiris Kirtzidis · 16 years ago
  10. ada6379 make DeclSpec manage its own protocol qualifier list memory instead of having by Chris Lattner · 16 years ago
  11. 4a68fe0 fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
  12. 65a5704 make type attribute processing static instead of methods on Sema. by Chris Lattner · 16 years ago
  13. f9e90cc handle type attributes when converting types, not when processing decls. by Chris Lattner · 16 years ago
  14. 1c15113 adjust the prototypes of a bunch of decl processing methods to take by Chris Lattner · 16 years ago
  15. dc78956 the 'mode' attribute is a decl attribute, not a type attribute. Move it to by Chris Lattner · 16 years ago
  16. 5e77ade Make Declarator::getDeclSpec() return a const reference to avoid by Chris Lattner · 16 years ago
  17. 99dbc96 fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  18. 86ad522 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
  19. 2ff28d1 An array of VLAs is a VLA. Shouldn't make any significant difference at by Eli Friedman · 16 years ago
  20. 2b9422f Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 16 years ago
  21. 1d66155 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 16 years ago
  22. 2e78db3 This patch is just the easy part of the class names patch, which by Chris Lattner · 16 years ago
  23. 97316c0 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  24. 3e254fb Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  25. 79af456 move a semantic check out of the parser into sema. by Chris Lattner · 16 years ago
  26. 6ab935b Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 16 years ago
  27. cfac88d add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 16 years ago
  28. 9db553e Various parts of the standard require something to be an "incomplete or by Chris Lattner · 16 years ago
  29. 5fcb38b 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 16 years ago
  30. 19eb97e Fix several bugs in array -> pointer decomposition. by Chris Lattner · 16 years ago
  31. 67d3c8d Fix PR2017 and silence some bogus errors. by Chris Lattner · 16 years ago
  32. 685d792 Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 17 years ago
  33. be1a7a0 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from Sema/SemaType.cpp]
  34. 2e7d57f add a fixme. by Chris Lattner · 17 years ago
  35. 69f0193 Collect and build and process type attributes on pointers. For by Chris Lattner · 17 years ago
  36. 1aaeeb9 move some code, no other change. by Chris Lattner · 17 years ago
  37. 9e98250 move type attribute processing into the creatively named ProcessTypeAttributes method. by Chris Lattner · 17 years ago
  38. 49d15cb Correctly handle address space qualifiers in declspecs. This by Chris Lattner · 17 years ago
  39. 726c545 move ConvertDeclSpecToType into Sema by Chris Lattner · 17 years ago
  40. d496fb9 add some code that will be used to remove processed attrs from by Chris Lattner · 17 years ago
  41. 06fb867 Change ConvertDeclSpecToType to break out of switch instead of by Chris Lattner · 17 years ago
  42. 35fef52 Alternate address spaces work: by Chris Lattner · 17 years ago
  43. 8ff0778 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 17 years ago
  44. 73458bf by Steve Naroff · 17 years ago
  45. 42730c5 Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  46. c08564a When promoting array to pointer for argument, don't lose type qualifiers. by Chris Lattner · 17 years ago
  47. 959e5be Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  48. bccfc15 reenable this code, fix the testcase. by Chris Lattner · 17 years ago
  49. c2f7307 disable my commit from yesterday, fixing a regression test failure. by Chris Lattner · 17 years ago
  50. 6ad7e88 Implement C99 6.7.5.3p1 by Chris Lattner · 17 years ago
  51. dcb2b1e Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 17 years ago
  52. c1a88c1 by Steve Naroff · 17 years ago
  53. e76e841 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  54. 336b2e8 Simplified setting up Method's scope before generating AST for its nody. by Fariborz Jahanian · 17 years ago
  55. 2240f54 Rename Sema method to follow class naming convention by Nate Begeman · 17 years ago
  56. 434fa8d by Steve Naroff · 17 years ago
  57. ff746bc Some code clean up in the form of name changes for functions which by Fariborz Jahanian · 17 years ago
  58. 8473b22 Added class context to method declarations. Provide "interface *" type by Fariborz Jahanian · 17 years ago
  59. ea86cb8 Insert invisble arguments to method definition header. by Fariborz Jahanian · 17 years ago
  60. dfb1c37 First patch toward rewriting of method definitions. This is work in progress. by Fariborz Jahanian · 17 years ago
  61. 91193f6 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  62. 2fd1c65 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  63. 3fafa10 by Steve Naroff · 17 years ago
  64. 0acc9c9 by Steve Naroff · 17 years ago
  65. 1830be7 by Steve Naroff · 17 years ago
  66. 81f1bba by Steve Naroff · 17 years ago
  67. 63b6a64 by Steve Naroff · 17 years ago
  68. 24c9b98 Polish yesterday's Array/ConstantArray/VariableArray rewrite, removing a couple FIXME's. by Steve Naroff · 17 years ago
  69. d1ad6ae by Steve Naroff · 17 years ago
  70. 47958f6 extwarn about VLAs in C89 mode. by Chris Lattner · 17 years ago
  71. 1a7d991 c++'0x has long long also. by Chris Lattner · 17 years ago
  72. 11f20f9 warn about long long when in c89 mode. by Chris Lattner · 17 years ago
  73. 91b03f7 by Steve Naroff · 17 years ago
  74. 209689a by Steve Naroff · 17 years ago
  75. 5328f31 add sema support for complex integer types by Chris Lattner · 17 years ago
  76. 11b649c by Steve Naroff · 17 years ago
  77. 36be3d8 remove more explicit accesses to the canonical type pointer. by Chris Lattner · 17 years ago
  78. f0c4a0a rename isReferenceType to follow the new scheme. by Chris Lattner · 17 years ago
  79. 7cbb146 by Steve Naroff · 17 years ago
  80. 4b00965 Fix a couple of bugs, add some new cool stuff. by Chris Lattner · 17 years ago