1. e77fd3c by Steve Naroff · 17 years ago
  2. fc4a160 Added a comment to ArraySubscriptExpr to note that the expressions like by Ted Kremenek · 17 years ago
  3. 87ce144 Added the following utility methods to VarDecl that provide by Ted Kremenek · 17 years ago
  4. 6a2394c Removed dead variable "hadError" in ParseReturnStmt. by Ted Kremenek · 17 years ago
  5. 71895b9 Added support for additional format string checking for the printf by Ted Kremenek · 17 years ago
  6. e6a82b2 Added documentation to StringLiteral noting that the strings returned by by Ted Kremenek · 17 years ago
  7. 954698c xfail this for now. by Chris Lattner · 17 years ago
  8. 883f6a7 start splitting out aggregate value computation from EmitExpr into EmitAggExpr. by Chris Lattner · 17 years ago
  9. ee41ce5 make sure to add a newline at the end of the dump by Chris Lattner · 17 years ago
  10. 8207710 Added "id_idx" parameter to CheckPrintfArguments. This will be used by Ted Kremenek · 17 years ago
  11. e0eb80a Moved id_asprintf before id_vsnprintf in the enum used for indexing by Ted Kremenek · 17 years ago
  12. c301815 add support for a top-level __extension__ marker, implementing a todo. by Chris Lattner · 17 years ago
  13. 59907c4 initial support for checking format strings, patch by Ted Kremenek: by Chris Lattner · 17 years ago
  14. af6f528 New file, just a placeholder for now. by Chris Lattner · 17 years ago
  15. 009e9f7 Build ASTs before relexing the file. This avoids having comment finding mutate the by Chris Lattner · 17 years ago
  16. 30bf771 by Steve Naroff · 17 years ago
  17. cff944b fix this test to pass. by Chris Lattner · 17 years ago
  18. cf60cd2 fix a codegen bug handling ocuvector element exprs. by Chris Lattner · 17 years ago
  19. 12b2be2 make this harder by Chris Lattner · 17 years ago
  20. cc666af implement initial codegen for aggregate return functions. This implements by Chris Lattner · 17 years ago
  21. 461766a Fix a bug handling function -> pointer decay and avoid emitting a noop bitcast. by Chris Lattner · 17 years ago
  22. f9e0581 implement dumper support for declstmt's. The dumper is now "done". by Chris Lattner · 17 years ago
  23. 13cb21f implement dumper support for the rest of expressions. by Chris Lattner · 17 years ago
  24. 36460ee move a switch to common code. by Chris Lattner · 17 years ago
  25. 0618408 minor fixes by Chris Lattner · 17 years ago
  26. 5fc6107 dump strings with escapes and other stuff in them nicely. by Chris Lattner · 17 years ago
  27. 1ef0876 minor cleanups by Chris Lattner · 17 years ago
  28. d6c7c18 __attribute__ starts a declspec. by Chris Lattner · 17 years ago
  29. a0df31a add dumping support for some new nodes by Chris Lattner · 17 years ago
  30. fd8f7da Dump out types for expressions, and handle typedefs nicely. by Chris Lattner · 17 years ago
  31. 6000dac add a new AST dumper interface (E->dump()). This dumps out by Chris Lattner · 17 years ago
  32. 13b7c5f Finish implementing __builtin_classify_type()... by Steve Naroff · 17 years ago
  33. 6c21616 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago
  34. e877042 Add support for __builtin_classify_type(). This builtin function isn't "public", however by Steve Naroff · 17 years ago
  35. d4f0802 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago
  36. 6a9f3e3 by Steve Naroff · 17 years ago
  37. 7effa1a add some helpers by Chris Lattner · 17 years ago
  38. 1bfd5cc by Steve Naroff · 17 years ago
  39. 69625f4 by Steve Naroff · 17 years ago
  40. 94f05e3 Implement codegen for __builtin_choose_expr. For example: by Chris Lattner · 17 years ago
  41. 345dc62 the sse intrinsics are missing, leading to errors. by Chris Lattner · 17 years ago
  42. 52e3de5 fix hang in testsuite by Chris Lattner · 17 years ago
  43. c1b607d fix constness issues. by Chris Lattner · 17 years ago
  44. 608e0ee Restrict vector component access (using "." and "[]") to variables. by Steve Naroff · 17 years ago
  45. d04fdd5 by Steve Naroff · 17 years ago
  46. 441995e by Steve Naroff · 17 years ago
  47. 30bf3ae implement codegen support for __builtin_types_compatible_p by Chris Lattner · 17 years ago
  48. dd652cdb fix a buggy comment I added by Chris Lattner · 17 years ago
  49. 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
  50. 90997ac testcase for vector element access stuff. by Chris Lattner · 17 years ago
  51. 7e6b51b implement codegen for multidest ocuvector expressions, like: by Chris Lattner · 17 years ago
  52. 017d6aa add codegen support for storing into a single-element ocu lvalue, such as: by Chris Lattner · 17 years ago
  53. 34cdc86 refactor handling of ocuvector lvalue->rvalue codegen into its own method. by Chris Lattner · 17 years ago
  54. 5cc2e45 In the common case where we are shuffling a vector, emit an by Chris Lattner · 17 years ago
  55. 4d0ac88 add OCUVectorComponent::getNumComponents() by Chris Lattner · 17 years ago
  56. 3b12612 Add support for scalar-returning element accesses like V.x by Chris Lattner · 17 years ago
  57. 46ea8eb implement lvalue to rvalue conversion for ocuvector components. We can now compile stuff by Chris Lattner · 17 years ago
  58. 349aaec add support for codegen of an OCUVectorComponent as an lvalue. by Chris Lattner · 17 years ago
  59. b8f849d Add support for encoding a OCUVectorComponent into a single integer. by Chris Lattner · 17 years ago
  60. f13ebf0 oops, this is the real fix. by Chris Lattner · 17 years ago
  61. 6f66c26 update test by Chris Lattner · 17 years ago
  62. 88dca04 rename some helpers, have them return the idx of the field being accessed. by Chris Lattner · 17 years ago
  63. b4878f4 Use static methods, which don't require an instance of OCUVectorType by Chris Lattner · 17 years ago
  64. 667405a mark some methods static, don't consider a vector to be an ocuvector by Chris Lattner · 17 years ago
  65. d14faaa silence some warnings. by Chris Lattner · 17 years ago
  66. cb92a11 Minor comment improvements. by Chris Lattner · 17 years ago
  67. 281a492 make sure we don't lose the ability to parse carbon.h by Chris Lattner · 17 years ago
  68. ad43ad4 Hyphenate a word, to check auto-update feature. Third times the charm! by Reid Spencer · 17 years ago
  69. 06ddd81 Expand a contraction to test auto-update on commit. by Reid Spencer · 17 years ago
  70. 2f291ba Test auto-update with minor grammaro fix. by Reid Spencer · 17 years ago
  71. c1e50fc Fix a bug in my previous commit by Chris Lattner · 17 years ago
  72. 4cabcfe switch a fixme to an assert. by Chris Lattner · 17 years ago
  73. 7b658aa by Steve Naroff · 17 years ago
  74. 991ae51 Increase the macro id cache to look up several recent entries, not just the last one. by Chris Lattner · 17 years ago
  75. 9dfa7b4 by Steve Naroff · 17 years ago
  76. 7f28fe8 by Steve Naroff · 17 years ago
  77. 389cecc by Steve Naroff · 17 years ago
  78. 363bcff by Steve Naroff · 17 years ago
  79. d34e915 by Steve Naroff · 17 years ago
  80. 9752f25 by Steve Naroff · 17 years ago
  81. 8d1a3b8 by Steve Naroff · 17 years ago
  82. bf98651 update this to build with LLVM ToT by Chris Lattner · 17 years ago
  83. 86e499d Print floating point literal values better. by Chris Lattner · 17 years ago
  84. 2cb64ec by Steve Naroff · 17 years ago
  85. 02c642e remove more explicit accesses to the canonical type pointer. by Chris Lattner · 17 years ago
  86. 2dcb6bb simplify some type checking code, don't explicitly access canonical types. by Chris Lattner · 17 years ago
  87. 611c1ff move trivial type predicates inline. by Chris Lattner · 17 years ago
  88. c862963 split the rest of the type predicates into pure predicates: by Chris Lattner · 17 years ago
  89. 2ad07f0 add internals manual to project by Chris Lattner · 17 years ago
  90. 33fc68a Owen pointed out that this made no sense :) by Chris Lattner · 17 years ago
  91. b39eec4 add two missing files to the xcode project. by Chris Lattner · 17 years ago
  92. a1d9fde rename isReferenceType to follow the new scheme. by Chris Lattner · 17 years ago
  93. befee48 make isPointerType() a pure predicate, rename the by Chris Lattner · 17 years ago
  94. 11406c1 update name by Chris Lattner · 17 years ago
  95. d1861fd by Steve Naroff · 17 years ago
  96. 8a2bc62 Oops, I committed the wrong file before. This expands the description of type. by Chris Lattner · 17 years ago
  97. 86920d3 Add a start at a clang internals manual, documenting some by Chris Lattner · 17 years ago
  98. 8993e90 add a link by Chris Lattner · 17 years ago
  99. d51d890 Don't use canonical type for sema here. In by Chris Lattner · 17 years ago
  100. fcac0ff Upgrade a comment... by Steve Naroff · 17 years ago