1. dd10e02 Remove a FIXME, allowing ++/-- on Complex types (a GCC extension). by Steve Naroff · 17 years ago
  2. 0471f5b finish off switch case overlap checking, adding support for by Chris Lattner · 17 years ago
  3. 6efc4d3 detect and diagnose empty case ranges: by Chris Lattner · 17 years ago
  4. f334850 fix a segfault in cases where there are no cases. by Chris Lattner · 17 years ago
  5. b2ec9d6 report duplicate case values. TODO: report duplicate/overlapping ranges. by Chris Lattner · 17 years ago
  6. f4021e7 start checking case values of switch stmts more closely. Emit overflow by Chris Lattner · 17 years ago
  7. f9bcf01 Parse @encode expressions. by Anders Carlsson · 17 years ago
  8. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  9. 3cbc38b add sema support for complex integer types by Chris Lattner · 17 years ago
  10. 2324512 Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  11. 06de276 Added extra semantic checking to do basic detection of by Ted Kremenek · 17 years ago
  12. 9cdc4d3 Return true in case of error, which is what other functions do. by Anders Carlsson · 17 years ago
  13. 71993dd Add initial support for constant CFStrings. by Anders Carlsson · 17 years ago
  14. e77fd3c by Steve Naroff · 17 years ago
  15. 6a2394c Removed dead variable "hadError" in ParseReturnStmt. by Ted Kremenek · 17 years ago
  16. 71895b9 Added support for additional format string checking for the printf by Ted Kremenek · 17 years ago
  17. 8207710 Added "id_idx" parameter to CheckPrintfArguments. This will be used by Ted Kremenek · 17 years ago
  18. e0eb80a Moved id_asprintf before id_vsnprintf in the enum used for indexing by Ted Kremenek · 17 years ago
  19. 59907c4 initial support for checking format strings, patch by Ted Kremenek: by Chris Lattner · 17 years ago
  20. 30bf771 by Steve Naroff · 17 years ago
  21. 6a9f3e3 by Steve Naroff · 17 years ago
  22. 1bfd5cc by Steve Naroff · 17 years ago
  23. 69625f4 by Steve Naroff · 17 years ago
  24. 608e0ee Restrict vector component access (using "." and "[]") to variables. by Steve Naroff · 17 years ago
  25. d04fdd5 by Steve Naroff · 17 years ago
  26. 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
  27. 88dca04 rename some helpers, have them return the idx of the field being accessed. by Chris Lattner · 17 years ago
  28. 363bcff by Steve Naroff · 17 years ago
  29. d34e915 by Steve Naroff · 17 years ago
  30. 8d1a3b8 by Steve Naroff · 17 years ago
  31. 02c642e remove more explicit accesses to the canonical type pointer. by Chris Lattner · 17 years ago
  32. 2dcb6bb simplify some type checking code, don't explicitly access canonical types. by Chris Lattner · 17 years ago
  33. c862963 split the rest of the type predicates into pure predicates: by Chris Lattner · 17 years ago
  34. a1d9fde rename isReferenceType to follow the new scheme. by Chris Lattner · 17 years ago
  35. befee48 make isPointerType() a pure predicate, rename the by Chris Lattner · 17 years ago
  36. d1861fd by Steve Naroff · 17 years ago
  37. d51d890 Don't use canonical type for sema here. In by Chris Lattner · 17 years ago
  38. fec0b49 Finish up semantic analysis for vector components. by Steve Naroff · 17 years ago
  39. bea0b34 by Steve Naroff · 17 years ago
  40. 31a4584 by Steve Naroff · 17 years ago
  41. e1b31fe Implement syntax/semantic analysis for OCU Vector Components. by Steve Naroff · 17 years ago
  42. 08f794b Fix the following bogus diagnostic...reported by Jeroen. by Steve Naroff · 17 years ago
  43. dfa6aae by Steve Naroff · 17 years ago
  44. 82c7e6d - Fix commit in Parser.h (patch by Kevin Andre). by Steve Naroff · 17 years ago
  45. e80a59c Fix a couple of bugs, add some new cool stuff. by Chris Lattner · 17 years ago
  46. 700204c by Steve Naroff · 17 years ago
  47. ab18c4c implement ast building and trivial semantic analysis of stmt exprs. by Chris Lattner · 17 years ago
  48. 8a87e57 correctly verify that default and case are in a switchstmt, by Chris Lattner · 17 years ago
  49. c1fcb77 Refactor switch analysis to make it possible to detect duplicate case values by Anders Carlsson · 17 years ago
  50. 78c75fb recover from void argument types more nicely. by Chris Lattner · 17 years ago
  51. 4565d4e better wording for an error, suggested by Neil. by Chris Lattner · 17 years ago
  52. 2274266 Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ by Anders Carlsson · 17 years ago
  53. 2ff5426 improve and simplify error recovery for calls, fix a crash when diagnosing by Chris Lattner · 17 years ago
  54. eddbe03 fix a warning on some compilers by Chris Lattner · 17 years ago
  55. d472b31 Fix off-by-one error when emitting diagnostics. Also, make diagnostic by Chris Lattner · 17 years ago
  56. 74c469f move some casts up to the entry of the function for clarity. by Chris Lattner · 17 years ago
  57. 0fa152e Two fixes: by Chris Lattner · 17 years ago
  58. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  59. aff1edd Finish fixing crasher with compound literals. by Steve Naroff · 17 years ago
  60. 4aa88f8 by Steve Naroff · 17 years ago
  61. 5265af5 Fix a crasher that Neil reported: Sema::GetTypeForDeclarator should never by Chris Lattner · 17 years ago
  62. 7332292 by Steve Naroff · 17 years ago
  63. 75af480 Cast to void is valid, patch by Benoit Boissinot by Chris Lattner · 17 years ago
  64. 6c36be5 Add initial switch stmt support, patch by Anders Carlsson! by Chris Lattner · 17 years ago
  65. ccb4af8 Use the correct method for getting the ReferenceType from a QualType. by Bill Wendling · 17 years ago
  66. 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
  67. 08ad47c Fix references: by Bill Wendling · 17 years ago
  68. a4332e2 by Steve Naroff · 17 years ago
  69. 16beff8 by Steve Naroff · 17 years ago
  70. 3e5e556 by Steve Naroff · 17 years ago
  71. c80b4ee by Steve Naroff · 17 years ago
  72. 2682490 Fix a GCC warning: by Chris Lattner · 17 years ago
  73. 7a2e047 Now that isPointerType can return a pointer type, avoid stripping off typedef by Chris Lattner · 17 years ago
  74. 12d9ff6 Use the return value of isPointerType and isVectorType to significantly simplify by Chris Lattner · 17 years ago
  75. 727a80d rename variables to be more consistent. Always use LHS/RHS intead of T1/T2 sometimes. by Chris Lattner · 17 years ago
  76. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 17 years ago
  77. fa2eaab by Steve Naroff · 17 years ago
  78. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 17 years ago
  79. 90045e8 by Steve Naroff · 17 years ago
  80. a7674d8 Move getSize() out of type, into ASTContext, where it has target info, and by Chris Lattner · 17 years ago
  81. 7a543ad Unspecified type specs default to int. This fixes a crash by Chris Lattner · 17 years ago
  82. ba61c14 Removed some superfluous code. The getType() method and associated by Steve Naroff · 17 years ago
  83. 49b4526 by Steve Naroff · 17 years ago
  84. 8b9023b Implement codegen for + and - with pointers. Patch contributed by Keith Bauer. by Chris Lattner · 17 years ago
  85. c63b96a by Steve Naroff · 17 years ago
  86. 24c3990 remember the initializer for a variable in the AST and teach the by Chris Lattner · 17 years ago
  87. 1c2a65b Fix a release build of clang. by Chris Lattner · 17 years ago
  88. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago