1. 21d5a95 by Steve Naroff · 17 years ago
  2. 563477d by Steve Naroff · 17 years ago
  3. 708391a by Steve Naroff · 17 years ago
  4. 8c9f13e Fixes/tweaks that prevent "defaults-i.m" from compiling. by Steve Naroff · 17 years ago
  5. 1b273c4 Rename statement actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  6. f69936d Rename expression actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  7. 08d92e4 by Steve Naroff · 17 years ago
  8. 701e5eb Silence VC++ warnings, patch by Hartmut Kaiser by Chris Lattner · 17 years ago
  9. d35005e by Steve Naroff · 17 years ago
  10. 38374b0 by Steve Naroff · 17 years ago
  11. f009063 by Steve Naroff · 17 years ago
  12. 9e2b75c diagnose extended uses of offsetof by Chris Lattner · 17 years ago
  13. 66b5a8a Add InitListExpr class. by Anders Carlsson · 17 years ago
  14. 711602b Sema::ParseCastExpr() missing call to UsualUnaryConversions(). by Steve Naroff · 17 years ago
  15. 704fe35 implement pretty printing of offsetof by Chris Lattner · 17 years ago
  16. 73d0d4f implement initial sema support for __builtin_offsetof by Chris Lattner · 17 years ago
  17. 915311c Fix a regression on test/Sema/unused-expr.c by fixing the type predicates by Chris Lattner · 17 years ago
  18. 79859c3 Spaces not tabs. by Neil Booth · 17 years ago
  19. b944951 Ensure we diagnose long long literals in C90 mode. by Neil Booth · 17 years ago
  20. 9b3d3a9 Added checking (during parsing) of comparison of floating point values using == or !=. by Ted Kremenek · 17 years ago
  21. b291ab6 by Steve Naroff · 17 years ago
  22. 5912a35 by Steve Naroff · 17 years ago
  23. 53a3234 by Steve Naroff · 17 years ago
  24. 17d1b2a add a sourcelocation to binary operator to keep track of the location of the operator. by Chris Lattner · 17 years ago
  25. e1223f7 by Steve Naroff · 17 years ago
  26. 2996036 Some minor aesthetic changes to the control flow. by Steve Naroff · 17 years ago
  27. 55fe455 Fix remaining bugs with complex/float promotions. by Steve Naroff · 17 years ago
  28. fb0d496 Replaced ASTContext::maxFloatingType() with ASTContext::compareFloatingType(). by Steve Naroff · 17 years ago
  29. 77878cc by Steve Naroff · 17 years ago
  30. f1448a0 by Steve Naroff · 17 years ago
  31. cc26ed7 require that operands to __real/__imag are complex or arithmetic. This by Chris Lattner · 17 years ago
  32. 5d66145 add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  33. 6e400c2 1.0 is double, 1.0F is a float. by Chris Lattner · 17 years ago
  34. a5937dd merge checkrelational and checkequality into CheckCompareOperands, by Chris Lattner · 17 years ago
  35. d28f815 Cases like this: char *C; C != ((void*)0); by Chris Lattner · 17 years ago
  36. 8702a0f by Steve Naroff · 17 years ago
  37. f1120de by Steve Naroff · 17 years ago
  38. 5d79425 remove a dead argument by Chris Lattner · 17 years ago
  39. dbb3697 Implement sema support for __real/__imag nodes. by Chris Lattner · 17 years ago
  40. 9f5fa9b by Steve Naroff · 17 years ago
  41. 084f9ed by Steve Naroff · 17 years ago
  42. bc60796 by Steve Naroff · 17 years ago
  43. 97c5156 fix a bug where we would type 0ULL as unsigned instead of unsigned long long by Chris Lattner · 17 years ago
  44. dd10e02 Remove a FIXME, allowing ++/-- on Complex types (a GCC extension). by Steve Naroff · 17 years ago
  45. f9bcf01 Parse @encode expressions. by Anders Carlsson · 17 years ago
  46. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  47. 9cdc4d3 Return true in case of error, which is what other functions do. by Anders Carlsson · 17 years ago
  48. 71993dd Add initial support for constant CFStrings. by Anders Carlsson · 17 years ago
  49. e77fd3c by Steve Naroff · 17 years ago
  50. 71895b9 Added support for additional format string checking for the printf by Ted Kremenek · 17 years ago
  51. 59907c4 initial support for checking format strings, patch by Ted Kremenek: by Chris Lattner · 17 years ago
  52. 30bf771 by Steve Naroff · 17 years ago
  53. 6a9f3e3 by Steve Naroff · 17 years ago
  54. 1bfd5cc by Steve Naroff · 17 years ago
  55. 69625f4 by Steve Naroff · 17 years ago
  56. 608e0ee Restrict vector component access (using "." and "[]") to variables. by Steve Naroff · 17 years ago
  57. d04fdd5 by Steve Naroff · 17 years ago
  58. 6481a57 Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElementExpr respectively. This is for consistency with other expr nodes end with *Expr. by Chris Lattner · 17 years ago
  59. 88dca04 rename some helpers, have them return the idx of the field being accessed. by Chris Lattner · 17 years ago
  60. 363bcff by Steve Naroff · 17 years ago
  61. d34e915 by Steve Naroff · 17 years ago
  62. 2dcb6bb simplify some type checking code, don't explicitly access canonical types. by Chris Lattner · 17 years ago
  63. c862963 split the rest of the type predicates into pure predicates: by Chris Lattner · 17 years ago
  64. a1d9fde rename isReferenceType to follow the new scheme. by Chris Lattner · 17 years ago
  65. befee48 make isPointerType() a pure predicate, rename the by Chris Lattner · 17 years ago
  66. d1861fd by Steve Naroff · 17 years ago
  67. d51d890 Don't use canonical type for sema here. In by Chris Lattner · 17 years ago
  68. fec0b49 Finish up semantic analysis for vector components. by Steve Naroff · 17 years ago
  69. bea0b34 by Steve Naroff · 17 years ago
  70. 31a4584 by Steve Naroff · 17 years ago
  71. e1b31fe Implement syntax/semantic analysis for OCU Vector Components. by Steve Naroff · 17 years ago
  72. 08f794b Fix the following bogus diagnostic...reported by Jeroen. by Steve Naroff · 17 years ago
  73. dfa6aae by Steve Naroff · 17 years ago
  74. 82c7e6d - Fix commit in Parser.h (patch by Kevin Andre). by Steve Naroff · 17 years ago
  75. 700204c by Steve Naroff · 17 years ago
  76. ab18c4c implement ast building and trivial semantic analysis of stmt exprs. by Chris Lattner · 17 years ago
  77. 2274266 Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ by Anders Carlsson · 17 years ago
  78. eddbe03 fix a warning on some compilers by Chris Lattner · 17 years ago
  79. d472b31 Fix off-by-one error when emitting diagnostics. Also, make diagnostic by Chris Lattner · 17 years ago
  80. 74c469f move some casts up to the entry of the function for clarity. by Chris Lattner · 17 years ago
  81. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  82. aff1edd Finish fixing crasher with compound literals. by Steve Naroff · 17 years ago
  83. 4aa88f8 by Steve Naroff · 17 years ago
  84. 75af480 Cast to void is valid, patch by Benoit Boissinot by Chris Lattner · 17 years ago
  85. ccb4af8 Use the correct method for getting the ReferenceType from a QualType. by Bill Wendling · 17 years ago
  86. 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
  87. 08ad47c Fix references: by Bill Wendling · 17 years ago
  88. a4332e2 by Steve Naroff · 17 years ago
  89. 16beff8 by Steve Naroff · 17 years ago
  90. 3e5e556 by Steve Naroff · 17 years ago
  91. c80b4ee by Steve Naroff · 17 years ago
  92. 2682490 Fix a GCC warning: by Chris Lattner · 17 years ago
  93. 7a2e047 Now that isPointerType can return a pointer type, avoid stripping off typedef by Chris Lattner · 17 years ago
  94. 12d9ff6 Use the return value of isPointerType and isVectorType to significantly simplify by Chris Lattner · 17 years ago
  95. 727a80d rename variables to be more consistent. Always use LHS/RHS intead of T1/T2 sometimes. by Chris Lattner · 17 years ago
  96. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 17 years ago
  97. fa2eaab by Steve Naroff · 17 years ago
  98. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 17 years ago
  99. 90045e8 by Steve Naroff · 17 years ago
  100. ba61c14 Removed some superfluous code. The getType() method and associated by Steve Naroff · 17 years ago