1. 98cd599 Initial step toward supporting qualification conversions (C++ 4.4). by Douglas Gregor · 16 years ago
  2. 097e916 fix indentation by Chris Lattner · 16 years ago
  3. c6f7345 In C++, an empty parameter list indicates a function that takes no parameters. by Argyrios Kyrtzidis · 16 years ago
  4. 5618bd4 First wave of changes to support "blocks" (an extension to C). by Steve Naroff · 16 years ago
  5. eb4b705 Do typechecking and codegen for K&R-style function declarations by Eli Friedman · 16 years ago
  6. 43477ca warn when someone tries to make an array of ObjC interfaces instead of array by Chris Lattner · 16 years ago
  7. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  8. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  9. e4858a6 More #include cleaning by Daniel Dunbar · 16 years ago
  10. 64c438a Implement support for the 'wchar_t' C++ type. by Argyrios Kyrtzidis · 16 years ago
  11. ae4da61 make DeclSpec manage its own protocol qualifier list memory instead of having by Chris Lattner · 16 years ago
  12. 62f5f7f fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
  13. c9b346d make type attribute processing static instead of methods on Sema. by Chris Lattner · 16 years ago
  14. 0bf29ad handle type attributes when converting types, not when processing decls. by Chris Lattner · 16 years ago
  15. 545dd34 adjust the prototypes of a bunch of decl processing methods to take by Chris Lattner · 16 years ago
  16. fbf1347 the 'mode' attribute is a decl attribute, not a type attribute. Move it to by Chris Lattner · 16 years ago
  17. 985abd9 Make Declarator::getDeclSpec() return a const reference to avoid by Chris Lattner · 16 years ago
  18. fca0ddd fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  19. 3c0eb16 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
  20. 37148aa An array of VLAs is a VLA. Shouldn't make any significant difference at by Eli Friedman · 16 years ago
  21. 6d6eb57 Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 16 years ago
  22. 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 16 years ago
  23. 99dc914 This patch is just the easy part of the class names patch, which by Chris Lattner · 16 years ago
  24. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  25. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  26. 3420766 move a semantic check out of the parser into sema. by Chris Lattner · 16 years ago
  27. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 16 years ago
  28. bdcd637 add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 16 years ago
  29. d805bec Various parts of the standard require something to be an "incomplete or by Chris Lattner · 16 years ago
  30. 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 16 years ago
  31. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 16 years ago
  32. fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 16 years ago
  33. 58cce3b Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 16 years ago
  34. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Sema/SemaType.cpp]
  35. bde7184 add a fixme. by Chris Lattner · 17 years ago
  36. 7654914 Collect and build and process type attributes on pointers. For by Chris Lattner · 17 years ago
  37. 232e882 move some code, no other change. by Chris Lattner · 17 years ago
  38. f1d705c move type attribute processing into the creatively named ProcessTypeAttributes method. by Chris Lattner · 17 years ago
  39. 74788ba Correctly handle address space qualifiers in declspecs. This by Chris Lattner · 17 years ago
  40. fab5b45 move ConvertDeclSpecToType into Sema by Chris Lattner · 17 years ago
  41. 38d8b98 add some code that will be used to remove processed attrs from by Chris Lattner · 17 years ago
  42. 958858e Change ConvertDeclSpecToType to break out of switch instead of by Chris Lattner · 17 years ago
  43. f46699c Alternate address spaces work: by Chris Lattner · 17 years ago
  44. c5773c4 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 17 years ago
  45. 14f3f1b by Steve Naroff · 17 years ago
  46. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  47. 529bd02 When promoting array to pointer for argument, don't lose type qualifiers. by Chris Lattner · 17 years ago
  48. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  49. 68cfd49 reenable this code, fix the testcase. by Chris Lattner · 17 years ago
  50. 852e311 disable my commit from yesterday, fixing a regression test failure. by Chris Lattner · 17 years ago
  51. cd88129 Implement C99 6.7.5.3p1 by Chris Lattner · 17 years ago
  52. d58fabf Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 17 years ago
  53. b99a4a3 by Steve Naroff · 17 years ago
  54. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  55. b107ce8 Simplified setting up Method's scope before generating AST for its nody. by Fariborz Jahanian · 17 years ago
  56. bff5f5c Rename Sema method to follow class naming convention by Nate Begeman · 17 years ago
  57. 6649992 by Steve Naroff · 17 years ago
  58. 360300c Some code clean up in the form of name changes for functions which by Fariborz Jahanian · 17 years ago
  59. 1f7b6f8 Added class context to method declarations. Provide "interface *" type by Fariborz Jahanian · 17 years ago
  60. 3560002 Insert invisble arguments to method definition header. by Fariborz Jahanian · 17 years ago
  61. 306d68f First patch toward rewriting of method definitions. This is work in progress. by Fariborz Jahanian · 17 years ago
  62. 4b6c905 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  63. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  64. 980e508 by Steve Naroff · 17 years ago
  65. 08d92e4 by Steve Naroff · 17 years ago
  66. 08d5139 by Steve Naroff · 17 years ago
  67. 3536b44 by Steve Naroff · 17 years ago
  68. 42471f8 by Steve Naroff · 17 years ago
  69. c940612 Polish yesterday's Array/ConstantArray/VariableArray rewrite, removing a couple FIXME's. by Steve Naroff · 17 years ago
  70. 5912a35 by Steve Naroff · 17 years ago
  71. 94f81fd extwarn about VLAs in C89 mode. by Chris Lattner · 17 years ago
  72. d1eb332 c++'0x has long long also. by Chris Lattner · 17 years ago
  73. b23deda warn about long long when in c89 mode. by Chris Lattner · 17 years ago
  74. e1223f7 by Steve Naroff · 17 years ago
  75. 26b8ff4 by Steve Naroff · 17 years ago
  76. 3cbc38b add sema support for complex integer types by Chris Lattner · 17 years ago
  77. 8d1a3b8 by Steve Naroff · 17 years ago
  78. 02c642e remove more explicit accesses to the canonical type pointer. by Chris Lattner · 17 years ago
  79. a1d9fde rename isReferenceType to follow the new scheme. by Chris Lattner · 17 years ago
  80. d1861fd by Steve Naroff · 17 years ago
  81. 78c75fb recover from void argument types more nicely. by Chris Lattner · 17 years ago
  82. 4565d4e better wording for an error, suggested by Neil. by Chris Lattner · 17 years ago
  83. 2ff5426 improve and simplify error recovery for calls, fix a crash when diagnosing by Chris Lattner · 17 years ago
  84. 5265af5 Fix a crasher that Neil reported: Sema::GetTypeForDeclarator should never by Chris Lattner · 17 years ago
  85. 7a543ad Unspecified type specs default to int. This fixes a crash by Chris Lattner · 17 years ago
  86. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago