1. c4808bd new document. by Chris Lattner · 16 years ago
  2. b699aa6 Add some more documentation. Also reflowed comments to 80 col. by Mike Stump · 16 years ago
  3. 8be6340 Reuse case destinations. by Anders Carlsson · 16 years ago
  4. 98720f0 Always check if we can remove branch fixups, even if the cleanup stack is empty. by Anders Carlsson · 16 years ago
  5. e833eba Add a simplified EmitJumpThroughFinally and use it in CGObjC in preparation of making it use the cleanup stack. by Anders Carlsson · 16 years ago
  6. 32fffb7 Misc fixes to the cleanup stack code. by Anders Carlsson · 16 years ago
  7. 2be787c When we're at the stack depth we want, there isn't anything to do. by Mike Stump · 16 years ago
  8. b4857f5 add another crazy idea :) by Chris Lattner · 16 years ago
  9. 051a739 just remove this insane testcase :) by Chris Lattner · 16 years ago
  10. 410dd87 Teach the constant evaluator about C++ const integral variables. by Sebastian Redl · 16 years ago
  11. 0d2157d Fix redundant errors with missing default arguments in member declarations. by Sebastian Redl · 16 years ago
  12. c5d4469 Fix redundant errors for redefinitions with multiple existing definitions. by Sebastian Redl · 16 years ago
  13. cd8e618 Make the test cases failing due to exact diagnostic matching XFAIL. by Sebastian Redl · 16 years ago
  14. 7e39f18 Wire up break and continue processing to the new stack depth adjuster. by Mike Stump · 16 years ago
  15. 1e4b1ea Fixup expected errors. by Mike Stump · 16 years ago
  16. df27419 More cleanup stack work, PopCleanupBlock now returns a struct with the switch block and end block. by Anders Carlsson · 16 years ago
  17. 9b6b989 Updated checker build. by Ted Kremenek · 16 years ago
  18. e75ae4d Split some functions up by Anders Carlsson · 16 years ago
  19. 459ee36 CleanupScope needs to push the cleanup block in its destructor by Anders Carlsson · 16 years ago
  20. 9b39979 Implement support for branch fixups. by Anders Carlsson · 16 years ago
  21. 3766df6 use some references to simplify code. by Chris Lattner · 16 years ago
  22. 0e80d8f Genericize the existing logic for removing duplicate header dirs to apply by Chris Lattner · 16 years ago
  23. ed536bc More cleanup stack work. by Anders Carlsson · 16 years ago
  24. 7fc6184 Add public placement-delete operators. These are automatically used if the allocation throws by Douglas Gregor · 16 years ago
  25. e7de352 When emitting blocks, keep track of which cleanup scope they have. Minor fixes and cleanup. by Anders Carlsson · 16 years ago
  26. c40e10c Emit a cleanup block for the cleanup attribute by Anders Carlsson · 16 years ago
  27. 883fa55 Add support for emitting cleanup blocks. Make EmitCompoundStatement emit cleanup blocks if necessary by Anders Carlsson · 16 years ago
  28. ca2fec6 Add a simple RAII object, to be used for pushing a cleanup entry and make the insertion point be the cleanup block. by Anders Carlsson · 16 years ago
  29. 9b3264d Improve Sema of the cleanup attribute somewhat. by Anders Carlsson · 16 years ago
  30. a1ac477 Ensure we track all the stack depths for all break and continue points by Mike Stump · 16 years ago
  31. a35fc95 Update test case. by Ted Kremenek · 16 years ago
  32. 91f51ce Fix null dereference. by Ted Kremenek · 16 years ago
  33. 9c5b2a4 Add plumbing for the cleanup stack. by Anders Carlsson · 16 years ago
  34. a390a1d Commit header. by Ted Kremenek · 16 years ago
  35. 44274e6 For retain/release leaks, have the BugReport description indicate the allocation site and initial bindings. by Ted Kremenek · 16 years ago
  36. c8fc221 Tidy up bug descriptions. by Ted Kremenek · 16 years ago
  37. 7a6ea83 Use BugReport::getDescription() for the compiler warning text. by Ted Kremenek · 16 years ago
  38. eea234b C++ really shouldn't check these #defines, thanks to Howard by Chris Lattner · 16 years ago
  39. 86617f4 Determining the allocation site for a leak when constructing a CFRefLeakReport. This avoids repeated calls to GetAllocationSite when Profiling a CFRefLeakReport object. by Ted Kremenek · 16 years ago
  40. 8ff0504 Split logic for 'getEndPath()' for CFRefReport and CFRefLeakReport. by Ted Kremenek · 16 years ago
  41. 59f9fe1 Convert a use of 'std::ostringstream' to 'llvm::raw_string_ostream'. by Ted Kremenek · 16 years ago
  42. ecd8183 Split the exception object out into its own stack. by Anders Carlsson · 16 years ago
  43. 8559de1 Simplify the Objective-C exception handling. by Anders Carlsson · 16 years ago
  44. 024c71f Format for 80-cols. by Mike Stump · 16 years ago
  45. aa4c373 Move CheckPointerToMemberOperands to SemaExprCXX.cpp by Sebastian Redl · 16 years ago
  46. 304100b Ensure that we don't miscodegen if vlas creap into the top of the for. by Mike Stump · 16 years ago
  47. fd835a2 Fix pretty-printing of if conditions. Patch by Ben Lickly. by Sebastian Redl · 16 years ago
  48. ebfa23a Make one expected-diag directive match exactly one actual diagnostic. by Sebastian Redl · 16 years ago
  49. cfdf4c2 Arrange to have the correct StackDepth for while statements. by Mike Stump · 16 years ago
  50. 80225e1 Fit into 80-col. by Mike Stump · 16 years ago
  51. 8e7946e Add a test case for some Objective-C behavior that will not be supported in Objective-C++ by Douglas Gregor · 16 years ago
  52. 57ef46a Make const-initialized const integral variables I-C-Es in C++. by Sebastian Redl · 16 years ago
  53. 88ad911 Fixup goto codegen in and around VLAs. by Mike Stump · 16 years ago
  54. cee653e Fill in C++ status table for section 7 (declarations). by Sebastian Redl · 16 years ago
  55. 7d90a31 remove two eroneous suffixes, these promote to int. Thanks to Neil by Chris Lattner · 16 years ago
  56. c142dfd add note, weirdness. by Chris Lattner · 16 years ago
  57. 73b5343 fix some missing parens, thanks for Eli's review! by Chris Lattner · 16 years ago
  58. 43e0270 fix a typo that Sebastian noticed! by Chris Lattner · 16 years ago
  59. 1f2d2a1 make sure that UINTMAX_MAX has an unsigned type. This assumes that by Chris Lattner · 16 years ago
  60. ae04c5c make various MAX/MIN constants be preprocessor constants, not C constants. by Chris Lattner · 16 years ago
  61. 4fb74f7 Ensure that we assert if given an unhandled value. by Mike Stump · 16 years ago
  62. 3f06238 Set load/store alignment when doing ABI coercions. by Daniel Dunbar · 16 years ago
  63. 06f217c Use 'Destroy(Context)' instead of 'Context.Deallocate()' (does recursive freeing of memory). by Ted Kremenek · 16 years ago
  64. 0c97e04 Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
  65. 570882a GRExprEngine: When processing compound assignments, do a switch table lookup to get the non-compound opcode from the compound opcode instead of relying on the order of BinaryOperator::opcode values. This unbreaks the misc-ps.c test. by Ted Kremenek · 16 years ago
  66. ebbed65 start of tgmath, yuck. by Chris Lattner · 16 years ago
  67. 34e58bd Add negative test cases and fix diagnostics for member pointer dereferencing. by Sebastian Redl · 16 years ago
  68. 2863cae When making dummy file entries, the directory name should also be non-empty. by Daniel Dunbar · 16 years ago
  69. 08ab70a Use our new snazzy stdint.h to make a testcase 64-bit portable. by Sebastian Redl · 16 years ago
  70. 9ee1453 Apparently it is important to define intptr_t and uintptr_t to by Chris Lattner · 16 years ago
  71. 95216a6 Implement dereferencing of pointers-to-member. by Sebastian Redl · 16 years ago
  72. 15d3c0a Fix some errors in the new stdint.h. by Sebastian Redl · 16 years ago
  73. c81226c Fixed an objc2 nonfragile-abi code gen bug. by Fariborz Jahanian · 16 years ago
  74. 35def94 only define MB_LEN_MAX if the system <limits.h> doesn't. by Chris Lattner · 16 years ago
  75. eef5e98 add a stdint.h header. by Chris Lattner · 16 years ago
  76. 2ac88e0 Export __INT8_TYPE__ / __INT16_TYPE__ / __INT32_TYPE__ / __INT64_TYPE__ by Chris Lattner · 16 years ago
  77. ee78523 Clean up an already-fixed FIXME by Douglas Gregor · 16 years ago
  78. d406b03 Semantic checking for class template declarations and by Douglas Gregor · 16 years ago
  79. 76650bf Update comment. by Ted Kremenek · 16 years ago
  80. f3a4401 objc2's nonfragile abi API for messages sent to 'super'. by Fariborz Jahanian · 16 years ago
  81. 4f530a9 Move StringLiteral to allocate its internal string data using the allocator in by Ted Kremenek · 16 years ago
  82. afa046e Add sub-testcase where we process Cocoa.h using --disable-free (i.e., test the usage of the BumpPtrAllocator in ASTContext). by Ted Kremenek · 16 years ago
  83. 8504f51 ccc: Forward -dM to clang. by Daniel Dunbar · 16 years ago
  84. 039b1d0 ccc/Darwin: Add a missing Darwin argument translation, -shared becomes by Daniel Dunbar · 16 years ago
  85. c5ba491 Use 'compile' instead of 'codegen' when reporting error to user. by Daniel Dunbar · 16 years ago
  86. c2f979b Added special versions of new[]/delete[] to complement the new/delete which uses ASTContext's allocator. Updated some comments along the way. by Ted Kremenek · 16 years ago
  87. a187aad correct description by Chris Lattner · 16 years ago
  88. c3dfe4c first hack at limits.h by Chris Lattner · 16 years ago
  89. d36196a -funsigned-char sets __CHAR_UNSIGNED__ by Chris Lattner · 16 years ago
  90. 46cfe45 Diagnose attempts to define a namespace member out-of-line when no by Douglas Gregor · 16 years ago
  91. a076b41 Put the region store specific test in a separate file. by Zhongxing Xu · 16 years ago
  92. f1391b4 SymbolicRegions really have unknown sizes. by Zhongxing Xu · 16 years ago
  93. ecd3bb4 Create ElementRegion when the base is SymbolicRegion. This is like what we do by Zhongxing Xu · 16 years ago
  94. 133db8a Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 16 years ago
  95. 51fb422 add interface for walking macro table. by Chris Lattner · 16 years ago
  96. b5555ea add support for -x c++-header, update comment. by Chris Lattner · 16 years ago
  97. 163eb37 factor some code out into a helper function. by Chris Lattner · 16 years ago
  98. 7116215 file gone. by Chris Lattner · 16 years ago
  99. 31bd850 get __WCHAR_TYPE__ from the targetinfo hook by Chris Lattner · 16 years ago
  100. 534234c simplify and refactor a bunch of type definition code in Preprocessor by Chris Lattner · 16 years ago