1. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  2. 25bdb51 simplify the lexer ctor to take a SLoc instead of a sloc and a redundant buffer*. by Chris Lattner · 17 years ago
  3. 9dc1f53 Reimplement SourceLocation. Instead of having a by Chris Lattner · 17 years ago
  4. 030d884 implement size/alignment analysis for arrays and vectors. This gets carbon.h working again. by Chris Lattner · 17 years ago
  5. aff1edd Finish fixing crasher with compound literals. by Steve Naroff · 17 years ago
  6. 2b64fdc Fix a stringizing bug that Neil noticed. We should preprocess this: by Chris Lattner · 17 years ago
  7. a87b63b silence a warning by treating ocuvectors the same as vectors. by Chris Lattner · 17 years ago
  8. 4aa88f8 by Steve Naroff · 17 years ago
  9. 5265af5 Fix a crasher that Neil reported: Sema::GetTypeForDeclarator should never by Chris Lattner · 17 years ago
  10. 938867c Make sure to initialize an ivar, patch by Benoit Boissinot. by Chris Lattner · 17 years ago
  11. 0ea793e Correctly respect C99 5.1.1.2p4 when searching for the first '(' of by Chris Lattner · 17 years ago
  12. 76e773a implement i-c-e correct evaluation for sizeof/alignof, remove some obsolete fixme's. by Chris Lattner · 17 years ago
  13. 5d2a630 implement sizeof/alignof support for structs, unions and complex. by Chris Lattner · 17 years ago
  14. 5e3fbe5 implement codegen support for sizeof/alignof by Chris Lattner · 17 years ago
  15. 7332292 by Steve Naroff · 17 years ago
  16. 464175b initial layout support for structures and unions. This isn't actually by Chris Lattner · 17 years ago
  17. a8fe39e add accessors by Chris Lattner · 17 years ago
  18. 75af480 Cast to void is valid, patch by Benoit Boissinot by Chris Lattner · 17 years ago
  19. 6d87fc6 teach -stats about new types by Chris Lattner · 17 years ago
  20. ce0afc0 add a note Neil pointed out by Chris Lattner · 17 years ago
  21. 6c36be5 Add initial switch stmt support, patch by Anders Carlsson! by Chris Lattner · 17 years ago
  22. 67798cb strtod is more portable than strtof apparently. Instead of making this conditional, by Chris Lattner · 17 years ago
  23. 79cc005 cheap change to fix solaris compilation. I can make this a static inline if desired by Gabor Greif · 17 years ago
  24. ccb4af8 Use the correct method for getting the ReferenceType from a QualType. by Bill Wendling · 17 years ago
  25. 9697a5c I forgot to check this in earlier by Chris Lattner · 17 years ago
  26. 251dcaf Return the correct type from isReferenceType(). by Bill Wendling · 17 years ago
  27. 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
  28. 08ad47c Fix references: by Bill Wendling · 17 years ago
  29. a4332e2 by Steve Naroff · 17 years ago
  30. 16beff8 by Steve Naroff · 17 years ago
  31. 3e5e556 by Steve Naroff · 17 years ago
  32. a2c7767 In the final step for preserving typedef info better in the AST, upgrade by Chris Lattner · 17 years ago
  33. c80b4ee by Steve Naroff · 17 years ago
  34. 2682490 Fix a GCC warning: by Chris Lattner · 17 years ago
  35. da13870 Implement break and continue. Patch by Anders Carlsson! by Chris Lattner · 17 years ago
  36. f0fbcb3 avoid requiring people to update from llvm svn. by Chris Lattner · 17 years ago
  37. ca51c97 Constify the is*Lvalue() methods. by Bill Wendling · 17 years ago
  38. 136f93a Make octal constant lexing use AdvanceToTokenCharacter to give more by Chris Lattner · 17 years ago
  39. 97ba77c Add a new Preprocessor::AdvanceToTokenCharacter method which, given a sloc by Chris Lattner · 17 years ago
  40. 20e6ccd add better comments. by Chris Lattner · 17 years ago
  41. f66d3e3 factor a common predicate into a static method. by Chris Lattner · 17 years ago
  42. 99e0d79 Add a hack (mirroring llvm-gcc) to pointer difference codegen to compile: by Chris Lattner · 17 years ago
  43. 1467e03 add required directories to the path automatically, so the user doesn't need to worry about it. by Chris Lattner · 17 years ago
  44. 7d5afc3 Make check conflicts with the other default llvm target, 'make check' will come later I guess. by Chris Lattner · 17 years ago
  45. 077c3f2 'make check' is what more people expect. by Chris Lattner · 17 years ago
  46. 9505581 Doug Gregor pointed out that _Complex actually isn't C++ at all. by Chris Lattner · 17 years ago
  47. d4b80f1 Add support for C++'0x keywords, patch by Doug Gregor by Chris Lattner · 17 years ago
  48. 7a2e047 Now that isPointerType can return a pointer type, avoid stripping off typedef by Chris Lattner · 17 years ago
  49. 12d9ff6 Use the return value of isPointerType and isVectorType to significantly simplify by Chris Lattner · 17 years ago
  50. 3acb138 as a very useful feature, make isVectorType and isPointerType return by Chris Lattner · 17 years ago
  51. 727a80d rename variables to be more consistent. Always use LHS/RHS intead of T1/T2 sometimes. by Chris Lattner · 17 years ago
  52. 26dc7b3 Remove an extraneous QualType from CastExpr, it's type is always by Chris Lattner · 17 years ago
  53. bfef6d7 don't let builtin-type handling code fall into pointer handling code by Chris Lattner · 17 years ago
  54. 2eadfb6 set the correct width for a character literal when evaluating it as an i-c-e. by Chris Lattner · 17 years ago
  55. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 17 years ago
  56. dda75cf remove obsolete comment. by Chris Lattner · 17 years ago
  57. abca2bb Change SourceManager::getInstantiationLoc to take virtual locations, doing its by Chris Lattner · 17 years ago
  58. fa2eaab by Steve Naroff · 17 years ago
  59. c3f8937 non-apple targets should be like i386, not the mythical, bogus, linux target. by Chris Lattner · 17 years ago
  60. 9594acf Cache macro expander objects to avoid thrashing malloc in heavy expansion situations. by Chris Lattner · 17 years ago
  61. 9e344c6 Make parser scope cache be a member of the parser instead of a global, by Chris Lattner · 17 years ago
  62. 25c9648 switch function-like macros from using a vector for their arguments to an by Chris Lattner · 17 years ago
  63. f46f68b switch from using a vector to a smallvector for macro replacement tokens by Chris Lattner · 17 years ago
  64. c215bd6 expose an iterator interface to getReplacementTokens instead of the datastructure itself. by Chris Lattner · 17 years ago
  65. b5e240f split function-like and object-like macro body parsing to make the by Chris Lattner · 17 years ago
  66. d5e0d98 add FIXME and un-XFAIL test by Gabor Greif · 17 years ago
  67. 11f2dfe Add missing directory by Bill Wendling · 17 years ago
  68. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 17 years ago
  69. 8f32f71 Implement trivial integer initializers, like 'int X = 4;' for global by Chris Lattner · 17 years ago
  70. 32b266c In "int X,Y;", compile both X and Y. by Chris Lattner · 17 years ago
  71. 06c8d96 add a fixme by Chris Lattner · 17 years ago
  72. 8bf9f07 Improve char literal pretty printing, patch by Keith Bauer! by Chris Lattner · 17 years ago
  73. b02d4b4 fix type of main, use != by Gabor Greif · 17 years ago
  74. 4db18f2 implement _Complex * == and != by Gabor Greif · 17 years ago
  75. 90045e8 by Steve Naroff · 17 years ago
  76. 692233e Use target info to decide the sizes of basic types. by Chris Lattner · 17 years ago
  77. 7ab2ed8 Add missing citation. by Chris Lattner · 17 years ago
  78. bacfa02 a simple _Complex testcase by Gabor Greif · 17 years ago
  79. a7674d8 Move getSize() out of type, into ASTContext, where it has target info, and by Chris Lattner · 17 years ago
  80. 7a543ad Unspecified type specs default to int. This fixes a crash by Chris Lattner · 17 years ago
  81. e107b5d remove some extraneous spaces, no functionality change. by Chris Lattner · 17 years ago
  82. d07eb3b implement codegen support for implicit casts. by Chris Lattner · 17 years ago
  83. d0d560a eliminate extraneous type, add accessors. by Chris Lattner · 17 years ago
  84. 8da1cb6 Check in these testcases. by Chris Lattner · 17 years ago
  85. a63ff14 new testcase that crashes the cfe due to implicit conversion fun by Chris Lattner · 17 years ago
  86. a80b0ba silence a bogus gcc warning. by Chris Lattner · 17 years ago
  87. ba61c14 Removed some superfluous code. The getType() method and associated by Steve Naroff · 17 years ago
  88. c35717a remove use of alloca. by Chris Lattner · 17 years ago
  89. 49b4526 by Steve Naroff · 17 years ago
  90. 8a6a237 check in the basic llvm license by Chris Lattner · 17 years ago
  91. 7ae5326 Solaris needs an included header for alloca by Gabor Greif · 17 years ago
  92. b0a721a "Codegen for Character Literals and Conditional Operator by Chris Lattner · 17 years ago
  93. 88a69ad implement support for basic codegen of global variables with no initializers. by Chris Lattner · 17 years ago
  94. fa7c645 "Someone typed "PtrToInt" where they meant "IntToPtr". by Chris Lattner · 17 years ago
  95. 8b9023b Implement codegen for + and - with pointers. Patch contributed by Keith Bauer. by Chris Lattner · 17 years ago
  96. b7b50bc Workaround gcc 3.4.x bug by Anton Korobeynikov · 17 years ago
  97. c63b96a by Steve Naroff · 17 years ago
  98. a7fa381 update tests by Chris Lattner · 17 years ago
  99. e8fdbba -pedantic no longer defaults to on. by Chris Lattner · 17 years ago
  100. 2b80ec2 update test by Chris Lattner · 17 years ago