1. 2c8569d warn about unhandled initializers instead of crashing on them. by Chris Lattner · 17 years ago
  2. 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 17 years ago
  3. 5a2fa14 remove the alloca insertion point inst, which is an internal helper. by Chris Lattner · 17 years ago
  4. fafad83 merge the llvm global variable when there are multiple C decls. by Chris Lattner · 17 years ago
  5. 58c3f9e implement codegen for functions whose function body type don't match by Chris Lattner · 17 years ago
  6. 028380e merge functions with multiple function decls if they have the same name. by Chris Lattner · 17 years ago
  7. 434415a Teach clang the prototype for __builtin_alloca. by Chris Lattner · 17 years ago
  8. dc4d280 convert the rest of the stderr users in codegen to use diagnostics. by Chris Lattner · 17 years ago
  9. dc5e826 move unsupported warning into a centralized place. by Chris Lattner · 17 years ago
  10. fb97b03 Warn about unsupported codegen with the diags machinery, giving us: by Chris Lattner · 17 years ago
  11. bbb75f6 register clz and ctz builtins. by Chris Lattner · 17 years ago
  12. 26de465 fix a crash when the rewriter would scan off the beginning of the file. by Chris Lattner · 17 years ago
  13. 182745a add support for custom client-specific diagnostics. As a testcase, make the by Chris Lattner · 17 years ago
  14. 6f0768b Add support for __builtin_expect which is needed for assert, by Oliver Hunt · 17 years ago
  15. 2efcd2f improve VC++ compatibility, patch by Cédric Venet. by Chris Lattner · 17 years ago
  16. 2824723 Support initalisers for more than just int-typed static variables. by Oliver Hunt · 17 years ago
  17. ab38e4b Compute side-effect for conditional expression. by Fariborz Jahanian · 17 years ago
  18. 6e34049 Add #include, patch by Cédric Venet by Chris Lattner · 17 years ago
  19. c4de6a2 Better match llvm-gcc's behavior for CodeGen naming of anonymous structs and unions. by Christopher Lamb · 17 years ago
  20. 0f8db70 When generating the CodeGen type name of a struct, union, enum use the typedef by Christopher Lamb · 17 years ago
  21. cd5af4b Test commit by Seo Sanghyeon · 17 years ago
  22. e7716e6 make the unused expression warning less noisy by not warning about comma exprs whose by Chris Lattner · 17 years ago
  23. a977636 simplify some code, add support for functions without a proto by Chris Lattner · 17 years ago
  24. 1438b49 fix a couple switch codegen problems Oliver reported. by Chris Lattner · 17 years ago
  25. 68072a7 Fixed bug in the serialization of SelectorTable where we did not register the by Ted Kremenek · 17 years ago
  26. 0750618 start partitioning the diagnostics into two classes: those by Chris Lattner · 17 years ago
  27. 7323a62 String literals are always valid LValues. by Anders Carlsson · 17 years ago
  28. bdbb285 Implemented serialization of SelectorTable and Selectors. by Ted Kremenek · 17 years ago
  29. e365c50 pass diagnostics into the rewrite test client. by Chris Lattner · 17 years ago
  30. 6c19a04 Initialize CurMethodDecl to 0. by Anders Carlsson · 17 years ago
  31. 3907323 GCC has an extension where the left hand side of the ? : operator can be omitted. Handle this in a few more places. by Anders Carlsson · 17 years ago
  32. b0ff33a Initialize LaxVectorConversions. by Anders Carlsson · 17 years ago
  33. 3e47be5 fix a bug handling typedefs in member expr codegen. Patch by Seo Sanghyeon by Chris Lattner · 17 years ago
  34. 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
  35. c69a581 Support fully general case expressions, patch by Sanghyeon Seo! by Chris Lattner · 17 years ago
  36. fbd9173 Doh! Check in this long overdue test fix. by Christopher Lamb · 17 years ago
  37. 695dbb6 Support lax vector conversions. by Anders Carlsson · 17 years ago
  38. 89307ff by Steve Naroff · 17 years ago
  39. 2ff3e69 Added method "HandleTopLevelDeclaration" to ASTConsumer. This will eventually by Ted Kremenek · 17 years ago
  40. 48b1239 Update the initializer's type, in addition to the decl, if we've changed the type of the decl based on it. by Christopher Lamb · 17 years ago
  41. 5026540 Added "complex.c" (a copy of test/Codegen/complex.) to the serialization by Ted Kremenek · 17 years ago
  42. 6127b12 Only serialize top-level decls that appear at the head of a decl chain. by Ted Kremenek · 17 years ago
  43. 016765e Support floating point literals of the form "1e-16f" which specify an exponent but no decimal point. by Christopher Lamb · 17 years ago
  44. 5656b78 Enhanced serialization testing by also pretty-printing CFGs constructed from ASTs by Ted Kremenek · 17 years ago
  45. b594a40 Fixed test case to not expect a warning when one should not be emitted. by Ted Kremenek · 17 years ago
  46. 9e7f0ec Added test cases for -Wfloat-equal to test comparisons against literals that can be by Ted Kremenek · 17 years ago
  47. 1b500bb Enhanced implementation of -Wfloat-equal to check for comparisons against by Ted Kremenek · 17 years ago
  48. 720c4ec Added "isExact" field to FloatingLiteral. This flag indicates whether or not by Ted Kremenek · 17 years ago
  49. 32e61bf Removed potential buffer overrun (spotted by Neil Booth) when NumericLiteralParser by Ted Kremenek · 17 years ago
  50. 1f64432 by Steve Naroff · 17 years ago
  51. ea75c55 Converted AST Pretty-Printer to use iostreams instead of FILE*. This fixes by Ted Kremenek · 17 years ago
  52. 251f732 Inlined test case to make it independent of the stmt_exprs test case in test/Sema. by Ted Kremenek · 17 years ago
  53. efb7153 Added the "Serialization" test directory to the set of tests executed. by Ted Kremenek · 17 years ago
  54. f387aeb Added initial test case for testing serialization of ASTs. This test by Ted Kremenek · 17 years ago
  55. 79a2a26 Modified --test-pickling to perform an actual cross-check of serialized ASTs: by Ted Kremenek · 17 years ago
  56. 6a18c76 Changed TestRunner.sh to dump the output and generated script files in by Ted Kremenek · 17 years ago
  57. 83c903f Added missing "RUN:" to comment for test case file. This fixed a bug where the test by Ted Kremenek · 17 years ago
  58. b751c28 Fix a bug checking for 'int foo(void)' that didn't look through typedefs of void. by Chris Lattner · 17 years ago
  59. 0d3b50e Fix typo in writable string test by Oliver Hunt · 17 years ago
  60. 01acb91 Adding code gen tests for writable and shared string literals. by Oliver Hunt · 17 years ago
  61. 5df6070 Add correct types for the last remaining intrinsics. by Anders Carlsson · 17 years ago
  62. 45e8cbd Implement support for -fwritable-strings and make the code generator by Chris Lattner · 17 years ago
  63. dd1b516 Add more intrinsics. We can now correctly parse both Carbon.h and Cocoa.h without having to do -arch ppc. by Anders Carlsson · 17 years ago
  64. fb70806 fix compilation error noticed by Nuno Lopes by Chris Lattner · 17 years ago
  65. 1b5a4bd Migrated static functions that print decls into a DeclPrinter class, by Ted Kremenek · 17 years ago
  66. 4cc6271 add several cases that Expr::hasStaticStorage missed, pointed out by Oliver Hunt by Chris Lattner · 17 years ago
  67. f471f2e Set loc earlier in CheckSingleInitializer to avoid emitting a by Chris Lattner · 17 years ago
  68. da5a6b6 sizeof is defined by bitsin(char) not by units of 8 bits. by Chris Lattner · 17 years ago
  69. 4ef9be7 update to match change in mainline llvm. by Chris Lattner · 17 years ago
  70. 529a4ad by Steve Naroff · 17 years ago
  71. 7ee261c handle __vector_size__ like vector_size by Chris Lattner · 17 years ago
  72. 142f36d Add builtin type signature support for vector types. Add correct type signatures for a bunch of MMX builtins. We now parse all the intrinsics in mmintrin.h by Anders Carlsson · 17 years ago
  73. 584b247 Add comment to CheckVectorCast.h by Anders Carlsson · 17 years ago
  74. 5c6a42a take an initial stab at setting function linkage right. Handle by Chris Lattner · 17 years ago
  75. a64db8f Report errors for invalid casts from/to vectors. by Anders Carlsson · 17 years ago
  76. d04c6e2 Add more semantic analysis for inline asm statements. by Anders Carlsson · 17 years ago
  77. 427d5af Added optional pass-by-reference argument "isExact" to by Ted Kremenek · 17 years ago
  78. 51221ec Removed dependence on #including iostream. by Ted Kremenek · 17 years ago
  79. 3f35148 Fixed #include of objc/objc.h so that it works on case-sensitive filesystems. by Ted Kremenek · 17 years ago
  80. d778f88 Reverted changed to getTagDeclType() introduced in patch 44089: by Ted Kremenek · 17 years ago
  81. ebe668f Fixed a rewrite bug in class synthesis (which I first thought was a rewrite API bug). by Fariborz Jahanian · 17 years ago
  82. 7905dd1 Removes link to status page till the info gets added. Someone put us on Reddit; Don't want it to look bad on the project. :) by Kevin · 17 years ago
  83. 2c7038b Patch to fix a regression caused by recent rewrite changes. by Fariborz Jahanian · 17 years ago
  84. 8e911c4 Fixed StmtPrinter to handle GCC extension to the ternary operator "?:" where by Ted Kremenek · 17 years ago
  85. ecc04c9 Fixed bug in CFG construction where we did not properly handle the GCC by Ted Kremenek · 17 years ago
  86. f5f20bd The checking for the delimiters of expected error/warning messages was by Bill Wendling · 17 years ago
  87. a21ddb3 Fix sema support for the gnu ?: expression with a by Chris Lattner · 17 years ago
  88. 09376fd this works. by Chris Lattner · 17 years ago
  89. 5d3f5a1 sizeof() return size in bytes, not bits, patch by Nuno Lopes! by Chris Lattner · 17 years ago
  90. 588e5eb Moved logic for -Wfloat-equal to SemaChecking.cpp. by Ted Kremenek · 17 years ago
  91. 6fa9086 Check that the clobber registers are valid. by Anders Carlsson · 17 years ago
  92. 646b261 Forgot some X86 registers by Anders Carlsson · 17 years ago
  93. 3346ae6 Add tables for GCC register names and aliases. This will be used for inline asm by Anders Carlsson · 17 years ago
  94. ca7aa1f Added more test cases for uninitialized values checker. by Ted Kremenek · 17 years ago
  95. ff7c538 Fixed bogus culling of uninitialized-values "taint" propagation during assignments. by Ted Kremenek · 17 years ago
  96. bfc5e50 Moved dead-stores test cast to a new test suite subdirectory: Analysis. by Ted Kremenek · 17 years ago
  97. 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
  98. 75cf288 improve codegen for global variable initializers, implementing by Chris Lattner · 17 years ago
  99. 04728b7 Check asm input and output expressions. by Anders Carlsson · 17 years ago
  100. 0c3eb29 Fix PR1820, an incredibly subtle macro expansion bug that Neil discovered. by Chris Lattner · 17 years ago