- 8bd5a69 Add cursor kind for C++ methods. by Ted Kremenek · 15 years ago
- ecdb41e IRgen: Move EmitLoadOfBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 15 years ago
- 21c0160 Fix an embarrasing memory error. I was apparently very tired when I wrote this by John McCall · 15 years ago
- ab970f9 IRgen: Enhance CGBitFieldInfo with enough information to fully describe the "policy" with which a bit-field should be accessed. by Daniel Dunbar · 15 years ago
- 4895a8c Remove unnecessary cast. by Daniel Dunbar · 15 years ago
- 77e8b11 Support befriending members of class template specializations. by John McCall · 15 years ago
- c034974 Twik to radar 7839485. Do not attach weak_import attribute to class by Fariborz Jahanian · 15 years ago
- a50d750 Turn off warning about weak_import attribute by Fariborz Jahanian · 15 years ago
- 08adf32 Removes a FIXME. by Fariborz Jahanian · 15 years ago
- 15bd588 Variation of objc_copyStruct API generation when by Fariborz Jahanian · 15 years ago
- 8ce9e45 Rework the ConstStructBuilder code to emit missing initializer by Chris Lattner · 15 years ago
- b5e8156 unbreak tests. by Chris Lattner · 15 years ago
- eba3e5a move a bunch of ConstStructBuilder methods out of line. by Chris Lattner · 15 years ago
- 4357a82 minor cleanups by Chris Lattner · 15 years ago
- 363ff23 Teach HasSideEffect about InitListExprs. Not having by Chris Lattner · 15 years ago
- 553e583 make the rewriter add a #ifndef around the #define of __attribute__. by Chris Lattner · 15 years ago
- abe183d Refactor and simplify the computation of implicit conversion sequences by Douglas Gregor · 15 years ago
- aa0be17 When returning the result of a call to an object of class type, do not by Douglas Gregor · 15 years ago
- d1fed3e During referencing binding, only consider conversion functions for by Douglas Gregor · 15 years ago
- bc9ad74 Make all cases that we don't handle explicit. by Zhongxing Xu · 15 years ago
- 0d9d736 Dispatch all C++ cast expr to VisitCast(). by Zhongxing Xu · 15 years ago
- c5354a2 CFGBuilder: always add C++ member call expr as block-level expr. by Zhongxing Xu · 15 years ago
- 3d04336 Allow classes to befriend implicitly-declared members. Fixes PR6207 for by John McCall · 15 years ago
- c09289d Add a cc1 option to specify the max number of nodes the analyzer can explore. by Zhongxing Xu · 15 years ago
- ba9d853 Parse constructor names in friend declarations. Part of the fix for PR6207. by John McCall · 15 years ago
- b21b1c9 Remove this test for now until I can figure out by Fariborz Jahanian · 15 years ago
- 9ea6397 Don't try to find a scope corresponding to the search DC for an unfound by John McCall · 15 years ago
- 984152f Modify test to be darwin specific. by Fariborz Jahanian · 15 years ago
- bbea716 add frontend support for -fdata-sections and -ffunction-sections, by Chris Lattner · 15 years ago
- 0b2bd47 Add support for objc_copyStruct to enforce by Fariborz Jahanian · 15 years ago
- cd9199e Fix debug info for cleanup block. by Devang Patel · 15 years ago
- df72140 cache the PP's SourceManager. by Chris Lattner · 15 years ago
- a3f8137 Diagnose declarations of conversion functions with declarators other than '()'. by John McCall · 15 years ago
- 88aae91 make the preprocessor listen to linemarker directives in -E mode, by Chris Lattner · 15 years ago
- c0b53c2 Remove some dead FIXMEs by Douglas Gregor · 15 years ago
- c520c84 Implement C++ [over.ics.user]p3, which restricts the final conversion by Douglas Gregor · 15 years ago
- 05baacb Improve source-location information for C++ conversion functions, by by Douglas Gregor · 15 years ago
- 515f43f fix a minor bug I noticed while work with Jordy's patch for PR6101, by Chris Lattner · 15 years ago
- 987aa87 Add fixit hint for missing ':' in ternary expressions. by Ted Kremenek · 15 years ago
- 04e4427 fix PR6814 - Only print [-pedantic] on a diagnostic if -pedantic by Chris Lattner · 15 years ago
- 45e1dae Add 'clang_getCursorLanguage' to return the "language" of the AST element (e.g., distinguish between C and Objective-C language features). Currently this only returns results for declarations. by Ted Kremenek · 15 years ago
- 006c82b Sort exports file. by Ted Kremenek · 15 years ago
- 0eea9f9 fix PR6660/6168: emit padding as zeros instead of undef. Because by Chris Lattner · 15 years ago
- 9b28daf IRgen: Factor out ComputeBitFieldInfo. by Daniel Dunbar · 15 years ago
- 01e56ae Implement C++ [temp.local]p4, which specifies how we eliminate by Douglas Gregor · 15 years ago
- ec55c94 Fix null dereference in 'WriteSourceLocation' when the FileEntry is null. by Ted Kremenek · 15 years ago
- b846deb Prune includes. by Benjamin Kramer · 15 years ago
- c6f530d Update doxygen comments about lifetime requirements of CXUnsaveFile data arguments. by Ted Kremenek · 15 years ago
- 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
- 454006d fix rdar://7852959 - Use of super within a block is actually ok. by Chris Lattner · 15 years ago
- 3be1794 Issue warning when 'weak_import' attribute is applied on a class only by Fariborz Jahanian · 15 years ago
- 15f2e72 Remove the blanket statement about Clang not supporting access control. It does now by Douglas Gregor · 15 years ago
- 57265e3 Fix a crash-on-invalid involving name lookup of tag names, where we by Douglas Gregor · 15 years ago
- 7683a3f Add another test case for r101029, which verifies that we now 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
- cf7cfe8 fix this test. by Chris Lattner · 15 years ago
- 3023747 xfail this test for now. by Chris Lattner · 15 years ago
- 00e2c63 fix an invalid use of super, you can't use super like this in a block! 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
- 69c05d5 Typo. by Nick Lewycky · 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
- e8551e4 fix PR6287 by accepting and ignoring the returns_twice attribute. 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
- 21b7323 Unbreak test on windows. by Ted Kremenek · 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
- fa8231d Add initial USR support for macro definitions. by Ted Kremenek · 15 years ago
- c3ef91d Augment clang_getCursorUSR() to not always expect that clang_getCursorDecl() does the right by Ted Kremenek · 15 years ago
- 718d069 More renames. by Anders Carlsson · 15 years ago
- 9123284 Rename a function parameter. by Anders Carlsson · 15 years ago
- 1ee6cad Add CIndex support for blocks. by Ted Kremenek · 15 years ago
- f3d4a97 Update checker build. by Ted Kremenek · 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
- b9342fb avoid double negatives 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
- e6da20f Fix run line so this test actually tests something. by Benjamin Kramer · 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
- 5f6480d Simplify test, in the hopes of making linux happy. by Daniel Dunbar · 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