- 6cc5906 Add some API code for future work. by Fariborz Jahanian · 15 years ago
- 93c6296 IRgen: Add CGRecordLayout::dump, and dump (irgen) record layouts as part of -fdump-record-layouts. by Daniel Dunbar · 15 years ago
- a7a98c9 fix PR6819 by Chris Lattner · 15 years ago
- 8b9f187 tighten the check for cast of super to avoid rejecting valid code, by Chris Lattner · 15 years ago
- 6275e0c When creating the implicitly-declared special member functions, be by Douglas Gregor · 15 years ago
- 3be1794 Issue warning when 'weak_import' attribute is applied on a class only by Fariborz Jahanian · 15 years ago
- 57265e3 Fix a crash-on-invalid involving name lookup of tag names, where we by Douglas Gregor · 15 years ago
- cb27b0f Be sure to instantiate the parameters of a function, even when the by Douglas Gregor · 15 years ago
- 1e46136 fix a bug I noticed by inspection, correcting two reject-valid bugs. by Chris Lattner · 15 years ago
- a823d6a fix a rejects-valid bug that I introduced, pointed out by David Chisnall by Chris Lattner · 15 years ago
- c987a41 use pointer comparison instead of isStr by Chris Lattner · 15 years ago
- 236beab fix a rejects-valid testcase involving super that I dreamt up. by Chris Lattner · 15 years ago
- 966c78b change Scope::WithinElse to be a normal scope flag, widen the by Chris Lattner · 15 years ago
- 15faee1 Have the parser decide whether a message to super is a variable or by Chris Lattner · 15 years ago
- aec43db fix a fixme, stop evaluating getCurMethodDecl() repeatedly by Chris Lattner · 15 years ago
- 9f6c772 other half of r101005 by Chris Lattner · 15 years ago
- 80638c5 Have the CXXBaseOrMemberInitializer keep track of whether an initializer initializes a virtual base or not. by Anders Carlsson · 15 years ago
- 73e6fa0 Fix another bug where we wouldn't generate secondary vtables for construction vtables in some cases. by Anders Carlsson · 15 years ago
- 718d069 More renames. by Anders Carlsson · 15 years ago
- 9123284 Rename a function parameter. by Anders Carlsson · 15 years ago
- 836d9dd Clarify an assertion. by Anders Carlsson · 15 years ago
- af6ddf2 Fix a bug where we were adding too many vcall offsets in some cases. by Anders Carlsson · 15 years ago
- 86ed3a3 add haiku support, patch by Paul Davey! by Chris Lattner · 15 years ago
- 115c1b9 Fix CFG bug where bases of member expressions were not always evaluated in a lvalue context. Fixes <rdar://problem/7813989>. by Ted Kremenek · 15 years ago
- 431ac2d Fix bug in AddStmtChoice:asLValue() where 'AsLValueNotAlwaysAdd' would not be treated as indicating an lvalue. by Ted Kremenek · 15 years ago
- 7ea2136 Sort visitor methods. No functionality change. by Ted Kremenek · 15 years ago
- eb483eb fix PR6811 by not parsing 'super' as a magic expression in by Chris Lattner · 15 years ago
- b9d4fc1 actually the interface grossness in the previous patch was due to by Chris Lattner · 15 years ago
- 7f81652 factor the code that handles "expr.field" when expr is a by Chris Lattner · 15 years ago
- 0784fcd fix a problem causing us to lose the ''s around objc interface names by Chris Lattner · 15 years ago
- 4995997 Enable an assert and remove a now unnecessary assert. by Anders Carlsson · 15 years ago
- 573021f Fix another vbase layout bug. by Anders Carlsson · 15 years ago
- a1e8716 Add a simple debug-only verification pass to the record layout builder. by Anders Carlsson · 15 years ago
- f622b45 Fix a bug where we would add the same function twice in a vtable. by Anders Carlsson · 15 years ago
- c603d09 revert 100942, pending discussion. by Chris Lattner · 15 years ago
- 9446481 Rename VtableComponent and VtableBuilder. by Anders Carlsson · 15 years ago
- 46116ce Rename -dump-record-layouts to -fdump-record-layouts now that the option behaves like aa flag. by Anders Carlsson · 15 years ago
- d281915 Fix for PR6811. by David Chisnall · 15 years ago
- bdda6c1 Simplify the virtual base layout code and fix a bug where we wouldn't store the offset for a virtual base. by Anders Carlsson · 15 years ago
- c24b9c4 fix PR6805: llvm.objectsize changed to take an i1 instead of an i32. by Chris Lattner · 15 years ago
- e3c153a Driver: Only add extra -L paths on darwin if they exist. Unfortunately, this by Daniel Dunbar · 15 years ago
- 43a9b32 Driver: Ignore -fobjc-gc and -fobjc-gc-only for platforms which don't support them. by Daniel Dunbar · 15 years ago
- 35f59b6 A bunch of string-related microoptimizations in Mangler. by Benjamin Kramer · 15 years ago
- dbf02bc Fix use after free. Incrementing an use_iterator after its user is erased is unsafe. by Benjamin Kramer · 15 years ago
- 59fc269 When a member pointer is dereferenced, the class it points into must be complete. Enforce this. by Sebastian Redl · 15 years ago
- 739bf09 Doug pointed out that we have a perfectly reasonable expression here to by John McCall · 15 years ago
- 3c3ccdb Diagnose more cases of initializing distinct members of an anonymous union by John McCall · 15 years ago
- d6ca8da Diagnose misordered initializers in constructor templates immediately instead of by John McCall · 15 years ago
- 35db3b9 rely even less on CallInst internals by Gabor Greif · 15 years ago
- 6ba728d do not rely on CallInst interna, use CallSite to access arguments by Gabor Greif · 15 years ago
- 8bc9c55 Driver/Darwin/x86: When linking, incorporate -L paths based on the path where by Daniel Dunbar · 15 years ago
- 0b3c773 Disable diag::err_file_modified on Win32 completely, until someone cares to fix by Daniel Dunbar · 15 years ago
- d930760 Mangle some expressions with codegen implications but no mangling "overhead". by John McCall · 15 years ago
- 6ae1f35 Provide an extremely unsatisfactory diagnostic (instead of crashing) when by John McCall · 15 years ago
- de81063 Provide manglings for bool and character literal expressions. These are by John McCall · 15 years ago
- 78713d8 When upgrading an Objective-C class from a forward declaration to a by Douglas Gregor · 15 years ago
- c42b652 Only complain about explicit instantiations following explicit by Douglas Gregor · 15 years ago
- 66d5142 Remove copy of 'Optional' in Clang tree, and convert clients to use the one now in the LLVM tree. by Ted Kremenek · 15 years ago
- 03a4bee Remove fixit for string literal comparison. Telling the user to use 'strcmp' is bad, and by Ted Kremenek · 15 years ago
- 32579cf Turn access control on by default in the driver. by John McCall · 15 years ago
- 7002f4c Turn access control on by default in -cc1. by John McCall · 15 years ago
- fd22544 Suppress access control diagnostics when looking up a base or member name by John McCall · 15 years ago
- 47268a3 Remove all "used" static functions *after* we have performed all of by Douglas Gregor · 15 years ago
- 6cd3b9f Instantiate default argument expressions even if their associated parameter by John McCall · 15 years ago
- 1a4221c Don't warn about unused static functions if they are marked with by Chris Lattner · 15 years ago
- 9f692a0 On Windows, disable the modification-time check for files used in by Douglas Gregor · 15 years ago
- 4ecb25f Fixes a regression caused by implementing cstyle methods for objc. by Fariborz Jahanian · 15 years ago
- d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 15 years ago
- bace4ba For 'open' check in UnixAPIChecker, hard code value of 'O_CREAT' on Darwin. by Ted Kremenek · 15 years ago
- 5d07401 Temporarily only enable 'open' check on Mac OS X to unbreak Windows buildbot. I'm by Ted Kremenek · 15 years ago
- cb821d0 Downgrade the "declaration does not declare anything" error to a by Douglas Gregor · 15 years ago
- 7732cc9 Implement method type encoding in the presense by Fariborz Jahanian · 15 years ago
- c173be2 Explain that a template needs arguments to make it into a type, for by Jeffrey Yasskin · 15 years ago
- ea7390c Set access properly on instantiated friend class template declarations. by John McCall · 15 years ago
- 99d9838 Add static analyzer check for calls to 'pthread_once()' where the control-flow has by Ted Kremenek · 15 years ago
- b7e5f14 Remove micro-optimization for not issueing CFG-based warnings for 'static inline' functions by Ted Kremenek · 15 years ago
- c53d0d7 Introduce an egregious hack to work around a bug in libstdc++ 4.2.x's by Douglas Gregor · 15 years ago
- 6f46c26 Fix a misuse of iterators when iterating through block's by Fariborz Jahanian · 15 years ago
- 9ab1454 Make CXXScopeSpec invalid when incomplete, and propagate that into any by Jeffrey Yasskin · 15 years ago
- 461e326 Rename CGVtable files to CGVTables. by Anders Carlsson · 15 years ago
- ec9c202 Clarify an assert. by Anders Carlsson · 15 years ago
- e17ad2f Unbreak the build by Douglas Gregor · 15 years ago
- 1e201b4 Eliminate excessive PCH deserialization caused by the search for by Douglas Gregor · 15 years ago
- 71c972a Remove caseless switch. by Benjamin Kramer · 15 years ago
- af2094e Implement dependent friend function template specializations. by John McCall · 15 years ago
- 2b60513 Removed unused object. by Ted Kremenek · 15 years ago
- b69eca5 Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-layouts a bit that Sema honors. by Daniel Dunbar · 15 years ago
- bf9e48c AST: Move C++ record layout dumping to ASTContext::DumpRecordLayout. by Daniel Dunbar · 15 years ago
- 7f28964 IRgen: Move the bit-field access type into CGBitFieldInfo, and change bit-field LValues to just store the base address of object containing the bit-field. by Daniel Dunbar · 15 years ago
- 4f4fd92 Patch to implement gcc's cstyle arguments in objc methods. wip. by Fariborz Jahanian · 15 years ago
- d6f1906 refactor out a function. by Chris Lattner · 15 years ago
- bb6fb46 Fix a (bogus) uninitialized-member-of-local warning. by John McCall · 15 years ago
- d75fa6e Use SmallVector instead of an std::queue. by Ted Kremenek · 15 years ago
- db88d8a When a template (without arguments) is passed as a template type by Jeffrey Yasskin · 15 years ago
- edc2877 Fix some redundant errors by changing CXXScopeSpec::isSet calls into by Jeffrey Yasskin · 15 years ago
- 216c278 Implement checking for template literal operator functions. This by Sean Hunt · 15 years ago
- 83e7a78 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 15 years ago
- 30019c0 Updated comment to reflect changes made in the most recent draft. by Sean Hunt · 15 years ago
- c39f697 Fixed 80-cols violation by Sean Hunt · 15 years ago
- 0f0c963 add a new driver-level -ferror-limit=412 option, which causes clang to stop by Chris Lattner · 15 years ago