1. 8a2bc62 Oops, I committed the wrong file before. This expands the description of type. by Chris Lattner · 17 years ago
  2. 86920d3 Add a start at a clang internals manual, documenting some by Chris Lattner · 17 years ago
  3. 8993e90 add a link by Chris Lattner · 17 years ago
  4. d51d890 Don't use canonical type for sema here. In by Chris Lattner · 17 years ago
  5. fcac0ff Upgrade a comment... by Steve Naroff · 17 years ago
  6. fec0b49 Finish up semantic analysis for vector components. by Steve Naroff · 17 years ago
  7. bea0b34 by Steve Naroff · 17 years ago
  8. 31a4584 by Steve Naroff · 17 years ago
  9. e1b31fe Implement syntax/semantic analysis for OCU Vector Components. by Steve Naroff · 17 years ago
  10. 7064f5c by Steve Naroff · 17 years ago
  11. 08f794b Fix the following bogus diagnostic...reported by Jeroen. by Steve Naroff · 17 years ago
  12. 18cf0ff add another link. by Chris Lattner · 17 years ago
  13. eca9967 don't expect to be able to reparse arbitrary system headers. by Chris Lattner · 17 years ago
  14. adc0185 Forgot a return stmt (oops). by Steve Naroff · 17 years ago
  15. dfa6aae by Steve Naroff · 17 years ago
  16. 82c7e6d - Fix commit in Parser.h (patch by Kevin Andre). by Steve Naroff · 17 years ago
  17. e80a59c Fix a couple of bugs, add some new cool stuff. by Chris Lattner · 17 years ago
  18. 700204c by Steve Naroff · 17 years ago
  19. 9572a5f add documentation skeleton by Chris Lattner · 17 years ago
  20. 706c99a add a bare bones web page by Chris Lattner · 17 years ago
  21. 012cf46 Fix a comment, patch by Kevin Andre! by Chris Lattner · 17 years ago
  22. ab18c4c implement ast building and trivial semantic analysis of stmt exprs. by Chris Lattner · 17 years ago
  23. 5143196 avoid std::string yet again. by Chris Lattner · 17 years ago
  24. d8e3083 Use a smallstring instead of an std::string in FileChanged to avoid some malloc traffic. by Chris Lattner · 17 years ago
  25. 1cf12bf check in an experiment that didn't work out, to allow for future investigation. by Chris Lattner · 17 years ago
  26. 5e36a7a Add a cache to SourceManager to accellerate line # lookup. This is a by Chris Lattner · 17 years ago
  27. b638a30 Fix two paste-avoidance bugs I introduced last night. Patch by Chris Lattner · 17 years ago
  28. dc0d73e fix bogus warnings about potentially uninit vars Size and Align. by Chris Lattner · 17 years ago
  29. f11ccfc Fix a scoping bug that apple gcc doesn't catch for some reason. by Chris Lattner · 17 years ago
  30. 8a87e57 correctly verify that default and case are in a switchstmt, by Chris Lattner · 17 years ago
  31. f063721 avoid creating std::strings in MoveToLine by Chris Lattner · 17 years ago
  32. e225e37 In OutputString, avoid calling memcpy for really tiny strings. by Chris Lattner · 17 years ago
  33. 2933f41 Avoid calling getSpelling at all for identifiers, which are by Chris Lattner · 17 years ago
  34. f0f2b29 change the concatenation avoidance algorithm to be partially table-driven by Chris Lattner · 17 years ago
  35. b19f5e8 If a token doesn't need cleaning, we can get its first character by Chris Lattner · 17 years ago
  36. 822f940 A minor tweak to -E output, speeding up -E 1.5% on 447.dealII by Chris Lattner · 17 years ago
  37. 706ab50 implement a missing feature in the #include handler, where by Chris Lattner · 17 years ago
  38. f1c99ac refactor the interface to Preprocessor::GetIncludeFilenameSpelling, by Chris Lattner · 17 years ago
  39. 0f67032 fix a bug getting the spelling of an identifier token by Chris Lattner · 17 years ago
  40. 349b42a no need to avoid pasting >* It can't form ->*, because we know the previous by Chris Lattner · 17 years ago
  41. 94fea5a GCC doesn't set __STDC_VERSION__ usually. It never sets it in by Chris Lattner · 17 years ago
  42. e36751b Switch TargetInfo::getTargetDefines from using an std::map<std::string, ...> to using by Chris Lattner · 17 years ago
  43. 448cec4 Change hte lexer to start a start pointer to the underlying by Chris Lattner · 17 years ago
  44. 409a036 split the slow path out of Lexer::getSourceLocation and do not let the by Chris Lattner · 17 years ago
  45. 9960ae8 Implement a simple cache in headersearch. This speeds up by Chris Lattner · 17 years ago
  46. c1fcb77 Refactor switch analysis to make it possible to detect duplicate case values by Anders Carlsson · 17 years ago
  47. 83769ab remove redundant test by Chris Lattner · 17 years ago
  48. 0cbc4b5 avoid a small bit of string traffic by not storing the ""'s around a string in CurFilename by Chris Lattner · 17 years ago
  49. 8133cfc avoid recursion between SkipBCPLComment and SkipWhitespace. In cases like this: by Chris Lattner · 17 years ago
  50. bd24776 when running in -E mode on multiple files, there is no reason to accumulate by Chris Lattner · 17 years ago
  51. 95cfb85 Catch goto's with a missing identifier, patch by Neil Booth. by Chris Lattner · 17 years ago
  52. 9c68306 Fix a really subtle bug in the macro expander caching code, where by Chris Lattner · 17 years ago
  53. 8146b68 Fix a lexer bug where we incorrectly rejected int i = /*/ */ 1; by Chris Lattner · 17 years ago
  54. 731ec57 Minor simplification to Expr::isLvalue(). by Steve Naroff · 17 years ago
  55. d1623a8 Add support for reusing macroid's with negative physical loc deltas. This by Chris Lattner · 17 years ago
  56. aa4166c implement getSourceRange for ImplicitCast by Chris Lattner · 17 years ago
  57. 96f1a64 Return an exit code of 1 if errors occur, not an exit code equal to the # errors :) by Chris Lattner · 17 years ago
  58. cb4f9a6 minor simplifications by Chris Lattner · 17 years ago
  59. 4fc37c5 testcase from neil by Chris Lattner · 17 years ago
  60. 78c75fb recover from void argument types more nicely. by Chris Lattner · 17 years ago
  61. 4565d4e better wording for an error, suggested by Neil. by Chris Lattner · 17 years ago
  62. 2274266 Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ by Anders Carlsson · 17 years ago
  63. 2ff5426 improve and simplify error recovery for calls, fix a crash when diagnosing by Chris Lattner · 17 years ago
  64. eddbe03 fix a warning on some compilers by Chris Lattner · 17 years ago
  65. a84538e add an evil macro expansion perf test from Neil. by Chris Lattner · 17 years ago
  66. d472b31 Fix off-by-one error when emitting diagnostics. Also, make diagnostic by Chris Lattner · 17 years ago
  67. 74c469f move some casts up to the entry of the function for clarity. by Chris Lattner · 17 years ago
  68. 0fa152e Two fixes: by Chris Lattner · 17 years ago
  69. 942cfd3 Fix a valgrind error noticed by Benoit Boissinot by Chris Lattner · 17 years ago
  70. 45011cf remove some old cruft by Chris Lattner · 17 years ago
  71. b1c2df9 fix a nasty bug Owen noticed in a gcc warning. by Chris Lattner · 17 years ago
  72. 31bb8be improve comments, implement a trivial single-entry cache in by Chris Lattner · 17 years ago
  73. 60c3a1b Update project for LexerToken.h -> Token.h by Chris Lattner · 17 years ago
  74. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  75. 25bdb51 simplify the lexer ctor to take a SLoc instead of a sloc and a redundant buffer*. by Chris Lattner · 17 years ago
  76. 9dc1f53 Reimplement SourceLocation. Instead of having a by Chris Lattner · 17 years ago
  77. 030d884 implement size/alignment analysis for arrays and vectors. This gets carbon.h working again. by Chris Lattner · 17 years ago
  78. aff1edd Finish fixing crasher with compound literals. by Steve Naroff · 17 years ago
  79. 2b64fdc Fix a stringizing bug that Neil noticed. We should preprocess this: by Chris Lattner · 17 years ago
  80. a87b63b silence a warning by treating ocuvectors the same as vectors. by Chris Lattner · 17 years ago
  81. 4aa88f8 by Steve Naroff · 17 years ago
  82. 5265af5 Fix a crasher that Neil reported: Sema::GetTypeForDeclarator should never by Chris Lattner · 17 years ago
  83. 938867c Make sure to initialize an ivar, patch by Benoit Boissinot. by Chris Lattner · 17 years ago
  84. 0ea793e Correctly respect C99 5.1.1.2p4 when searching for the first '(' of by Chris Lattner · 17 years ago
  85. 76e773a implement i-c-e correct evaluation for sizeof/alignof, remove some obsolete fixme's. by Chris Lattner · 17 years ago
  86. 5d2a630 implement sizeof/alignof support for structs, unions and complex. by Chris Lattner · 17 years ago
  87. 5e3fbe5 implement codegen support for sizeof/alignof by Chris Lattner · 17 years ago
  88. 7332292 by Steve Naroff · 17 years ago
  89. 464175b initial layout support for structures and unions. This isn't actually by Chris Lattner · 17 years ago
  90. a8fe39e add accessors by Chris Lattner · 17 years ago
  91. 75af480 Cast to void is valid, patch by Benoit Boissinot by Chris Lattner · 17 years ago
  92. 6d87fc6 teach -stats about new types by Chris Lattner · 17 years ago
  93. ce0afc0 add a note Neil pointed out by Chris Lattner · 17 years ago
  94. 6c36be5 Add initial switch stmt support, patch by Anders Carlsson! by Chris Lattner · 17 years ago
  95. 67798cb strtod is more portable than strtof apparently. Instead of making this conditional, by Chris Lattner · 17 years ago
  96. 79cc005 cheap change to fix solaris compilation. I can make this a static inline if desired by Gabor Greif · 17 years ago
  97. ccb4af8 Use the correct method for getting the ReferenceType from a QualType. by Bill Wendling · 17 years ago
  98. 9697a5c I forgot to check this in earlier by Chris Lattner · 17 years ago
  99. 251dcaf Return the correct type from isReferenceType(). by Bill Wendling · 17 years ago
  100. 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