1. 12d9ff6 Use the return value of isPointerType and isVectorType to significantly simplify by Chris Lattner · 18 years ago
  2. 3acb138 as a very useful feature, make isVectorType and isPointerType return by Chris Lattner · 18 years ago
  3. 727a80d rename variables to be more consistent. Always use LHS/RHS intead of T1/T2 sometimes. by Chris Lattner · 18 years ago
  4. 26dc7b3 Remove an extraneous QualType from CastExpr, it's type is always by Chris Lattner · 18 years ago
  5. bfef6d7 don't let builtin-type handling code fall into pointer handling code by Chris Lattner · 18 years ago
  6. 2eadfb6 set the correct width for a character literal when evaluating it as an i-c-e. by Chris Lattner · 18 years ago
  7. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 18 years ago
  8. dda75cf remove obsolete comment. by Chris Lattner · 18 years ago
  9. abca2bb Change SourceManager::getInstantiationLoc to take virtual locations, doing its by Chris Lattner · 18 years ago
  10. fa2eaab by Steve Naroff · 18 years ago
  11. c3f8937 non-apple targets should be like i386, not the mythical, bogus, linux target. by Chris Lattner · 18 years ago
  12. 9594acf Cache macro expander objects to avoid thrashing malloc in heavy expansion situations. by Chris Lattner · 18 years ago
  13. 9e344c6 Make parser scope cache be a member of the parser instead of a global, by Chris Lattner · 18 years ago
  14. 25c9648 switch function-like macros from using a vector for their arguments to an by Chris Lattner · 18 years ago
  15. f46f68b switch from using a vector to a smallvector for macro replacement tokens by Chris Lattner · 18 years ago
  16. c215bd6 expose an iterator interface to getReplacementTokens instead of the datastructure itself. by Chris Lattner · 18 years ago
  17. b5e240f split function-like and object-like macro body parsing to make the by Chris Lattner · 18 years ago
  18. d5e0d98 add FIXME and un-XFAIL test by Gabor Greif · 18 years ago
  19. 11f2dfe Add missing directory by Bill Wendling · 18 years ago
  20. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 18 years ago
  21. 8f32f71 Implement trivial integer initializers, like 'int X = 4;' for global by Chris Lattner · 18 years ago
  22. 32b266c In "int X,Y;", compile both X and Y. by Chris Lattner · 18 years ago
  23. 06c8d96 add a fixme by Chris Lattner · 18 years ago
  24. 8bf9f07 Improve char literal pretty printing, patch by Keith Bauer! by Chris Lattner · 18 years ago
  25. b02d4b4 fix type of main, use != by Gabor Greif · 18 years ago
  26. 4db18f2 implement _Complex * == and != by Gabor Greif · 18 years ago
  27. 90045e8 by Steve Naroff · 18 years ago
  28. 692233e Use target info to decide the sizes of basic types. by Chris Lattner · 18 years ago
  29. 7ab2ed8 Add missing citation. by Chris Lattner · 18 years ago
  30. bacfa02 a simple _Complex testcase by Gabor Greif · 18 years ago
  31. a7674d8 Move getSize() out of type, into ASTContext, where it has target info, and by Chris Lattner · 18 years ago
  32. 7a543ad Unspecified type specs default to int. This fixes a crash by Chris Lattner · 18 years ago
  33. e107b5d remove some extraneous spaces, no functionality change. by Chris Lattner · 18 years ago
  34. d07eb3b implement codegen support for implicit casts. by Chris Lattner · 18 years ago
  35. d0d560a eliminate extraneous type, add accessors. by Chris Lattner · 18 years ago
  36. 8da1cb6 Check in these testcases. by Chris Lattner · 18 years ago
  37. a63ff14 new testcase that crashes the cfe due to implicit conversion fun by Chris Lattner · 18 years ago
  38. a80b0ba silence a bogus gcc warning. by Chris Lattner · 18 years ago
  39. ba61c14 Removed some superfluous code. The getType() method and associated by Steve Naroff · 18 years ago
  40. c35717a remove use of alloca. by Chris Lattner · 18 years ago
  41. 49b4526 by Steve Naroff · 18 years ago
  42. 8a6a237 check in the basic llvm license by Chris Lattner · 18 years ago
  43. 7ae5326 Solaris needs an included header for alloca by Gabor Greif · 18 years ago
  44. b0a721a "Codegen for Character Literals and Conditional Operator by Chris Lattner · 18 years ago
  45. 88a69ad implement support for basic codegen of global variables with no initializers. by Chris Lattner · 18 years ago
  46. fa7c645 "Someone typed "PtrToInt" where they meant "IntToPtr". by Chris Lattner · 18 years ago
  47. 8b9023b Implement codegen for + and - with pointers. Patch contributed by Keith Bauer. by Chris Lattner · 18 years ago
  48. b7b50bc Workaround gcc 3.4.x bug by Anton Korobeynikov · 18 years ago
  49. c63b96a by Steve Naroff · 18 years ago
  50. a7fa381 update tests by Chris Lattner · 18 years ago
  51. e8fdbba -pedantic no longer defaults to on. by Chris Lattner · 18 years ago
  52. 2b80ec2 update test by Chris Lattner · 18 years ago
  53. 9623feb don't pick up random stuff in .svn directories. by Chris Lattner · 18 years ago
  54. 1501218 add missing header (needed on Solaris) by Gabor Greif · 18 years ago
  55. 6fa5f09 Fix "no newline at end of file" warnings. Patch contributed by by Chris Lattner · 18 years ago
  56. 9dc62f0 Improve portability to compilers where <cassert> is not implicitly by Chris Lattner · 18 years ago
  57. f866383 Allow this to compile on compilers where <string> doesn't imply <cassert>. by Chris Lattner · 18 years ago
  58. fdd7566 Properly use local variable declaration inside a switch case by Anton Korobeynikov · 18 years ago
  59. 3724c00 add missing specification for a default argument. I guess g++ 4.0 doesn't by Chris Lattner · 18 years ago
  60. 1978596 Evaluate the initializer for automatic variables. by Chris Lattner · 18 years ago
  61. 24c3990 remember the initializer for a variable in the AST and teach the by Chris Lattner · 18 years ago
  62. 5727479 implement codegen support for pre/post inc/dec. by Chris Lattner · 18 years ago
  63. 1c2a65b Fix a release build of clang. by Chris Lattner · 18 years ago
  64. 3321f9f update this. by Chris Lattner · 18 years ago
  65. 2686234 Test commit by Chris Lattner · 18 years ago
  66. 5911719 Move the ModuleInfo.txt file. by Reid Spencer · 18 years ago
  67. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 18 years ago
  68. a5f1820 Add a comment to indicate what this file is for. by Reid Spencer · 18 years ago
  69. 3178eb7 Add ModuleInfo.txt for the cfe module. by Reid Spencer · 18 years ago
  70. 6123183 Create initial directory structure for the C Front End. by Reid Spencer · 18 years ago