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