1. c5773c4 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 16 years ago
  2. 3c2b317 Remove useless parameter from isConstantSizeType. by Eli Friedman · 16 years ago
  3. ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 16 years ago
  4. 9412d68 by Steve Naroff · 17 years ago
  5. 5c06a69 by Steve Naroff · 17 years ago
  6. 494783a by Steve Naroff · 17 years ago
  7. 67c49e8 by Steve Naroff · 17 years ago
  8. 02f62a9 by Steve Naroff · 17 years ago
  9. 4cdec1c by Steve Naroff · 17 years ago
  10. 3f0c5ad Teach Type::isIntegerType() about GCC's __complex__ integer extensions... by Steve Naroff · 17 years ago
  11. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  12. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  13. d58fabf Refactoring work. ObjcQualifiedIdType is now derived from 'Type'. by Fariborz Jahanian · 17 years ago
  14. 9bfa73c remove the loc argument to Type::isConstantSizeType, which isn't useful. by Chris Lattner · 17 years ago
  15. d52a457 Fix PR1863: an assertion due to not setting a location on return from by Chris Lattner · 17 years ago
  16. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  17. 06cef25 Patch to make ObjcQualifiedInterfaceType inherit ObjcInterfaceType by Fariborz Jahanian · 17 years ago
  18. 39caea9 make it more clear what 'foo' is by Chris Lattner · 17 years ago
  19. 2de3b3a Fix isStructureType and isUnionType to ignore typedefs, as stated by Seo Sanghyeon · 17 years ago
  20. 7ee261c handle __vector_size__ like vector_size by Chris Lattner · 17 years ago
  21. 33e1d64 Encoding for objectiive-c methods. by Fariborz Jahanian · 17 years ago
  22. dea6146 Fix a major bug in the Type::getAs*Type methods: they didn't strip off by Chris Lattner · 17 years ago
  23. c67ad5f Add BuiltinType::Char_S to Type::isCharType by Anders Carlsson · 17 years ago
  24. ec0550f by Steve Naroff · 17 years ago
  25. 7e219e4 by Steve Naroff · 17 years ago
  26. 954ea17 by Steve Naroff · 17 years ago
  27. ff1afdb by Steve Naroff · 17 years ago
  28. dfbcce2 Implemented parsing of objctive-c protocol conforming type used in by Fariborz Jahanian · 17 years ago
  29. 4b6c905 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  30. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  31. 980e508 by Steve Naroff · 17 years ago
  32. 3536b44 by Steve Naroff · 17 years ago
  33. d7444aa by Steve Naroff · 17 years ago
  34. 6b91cd9 Diff is self small & self explanatory... by Steve Naroff · 17 years ago
  35. c940612 Polish yesterday's Array/ConstantArray/VariableArray rewrite, removing a couple FIXME's. by Steve Naroff · 17 years ago
  36. 729a213 fix a bug that is causing CodeGen/complex.c to be grumpy. by Chris Lattner · 17 years ago
  37. fb22d96 by Steve Naroff · 17 years ago
  38. d5bbce4 Teach Type::is[un]SignedIntegerType about enum decls. This allows the code generator by Chris Lattner · 17 years ago
  39. 77878cc by Steve Naroff · 17 years ago
  40. c6fb90a add getAsComplexType() for consistency by Chris Lattner · 17 years ago
  41. 6000dac add a new AST dumper interface (E->dump()). This dumps out by Chris Lattner · 17 years ago
  42. 13b7c5f Finish implementing __builtin_classify_type()... by Steve Naroff · 17 years ago
  43. 1bfd5cc by Steve Naroff · 17 years ago
  44. 363bcff by Steve Naroff · 17 years ago
  45. 8d1a3b8 by Steve Naroff · 17 years ago
  46. 611c1ff move trivial type predicates inline. by Chris Lattner · 17 years ago
  47. c862963 split the rest of the type predicates into pure predicates: by Chris Lattner · 17 years ago
  48. a1d9fde rename isReferenceType to follow the new scheme. by Chris Lattner · 17 years ago
  49. befee48 make isPointerType() a pure predicate, rename the by Chris Lattner · 17 years ago
  50. d1861fd by Steve Naroff · 17 years ago
  51. 31a4584 by Steve Naroff · 17 years ago
  52. 7064f5c by Steve Naroff · 17 years ago
  53. adc0185 Forgot a return stmt (oops). by Steve Naroff · 17 years ago
  54. dfa6aae by Steve Naroff · 17 years ago
  55. 700204c by Steve Naroff · 17 years ago
  56. 942cfd3 Fix a valgrind error noticed by Benoit Boissinot by Chris Lattner · 17 years ago
  57. 251dcaf Return the correct type from isReferenceType(). by Bill Wendling · 17 years ago
  58. ea5e79f Change dyn_cast for reference types to be more like pointers and not need the canonical type. Also fix so that we're not expecting a return value from a void function by Bill Wendling · 17 years ago
  59. a2c7767 In the final step for preserving typedef info better in the AST, upgrade by Chris Lattner · 17 years ago
  60. 7a2e047 Now that isPointerType can return a pointer type, avoid stripping off typedef by Chris Lattner · 17 years ago
  61. 3acb138 as a very useful feature, make isVectorType and isPointerType return by Chris Lattner · 17 years ago
  62. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 17 years ago
  63. a7674d8 Move getSize() out of type, into ASTContext, where it has target info, and by Chris Lattner · 17 years ago
  64. e107b5d remove some extraneous spaces, no functionality change. by Chris Lattner · 17 years ago
  65. 8b9023b Implement codegen for + and - with pointers. Patch contributed by Keith Bauer. by Chris Lattner · 17 years ago
  66. b7b50bc Workaround gcc 3.4.x bug by Anton Korobeynikov · 17 years ago
  67. c63b96a by Steve Naroff · 17 years ago
  68. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago