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