- 2ba6c81 Specify temporary file for -emit-llvm output in test case so that we don't deposit the file by Ted Kremenek · 15 years ago
- c75d6cc Improve the bit-field too wide error message. by Anders Carlsson · 15 years ago
- bf422f9 Diagnose attempts to throw an abstract class type. by Douglas Gregor · 15 years ago
- 1b49d76 Fix PR 6844, a regression caused by the introduction of llvm_unreachable for the default by Ted Kremenek · 15 years ago
- 9791357 Split adding the primary virtual base offsets out into a separate pass. This fixes a bug where we would lay out virtual bases in the wrong order. by Anders Carlsson · 15 years ago
- af68d4e Fix a few cases where enum constant handling was using by Douglas Gregor · 15 years ago
- d4a97a1 Teach -fixit to modify all of its inputs instead of just the main file, unless by Nick Lewycky · 15 years ago
- 2677261 IRgen: (Reapply 101222, with fixes) Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 15 years ago
- e57aa9e Rewrite handling of 64-bit palignr intrinsics to be vector shuffles. by Eric Christopher · 15 years ago
- 325e593 Warn about non-aggregate classes with no user-declared constructors by Douglas Gregor · 15 years ago
- 1a8cf73 Always diagnose and complain about problems in by Douglas Gregor · 15 years ago
- 1864f2e Once we've emitted a fatal diagnostic, keep counting errors but with a by Douglas Gregor · 15 years ago
- 94b24db Fix a -pedantic spurious warning involving @dynamic. by Fariborz Jahanian · 15 years ago
- ab866b4 improve altivec c++ support by adding casts, patch by Anton Yartsev! by Chris Lattner · 15 years ago
- 1aae80b Thread a Scope pointer into BuildRecoveryCallExpr to help typo by Douglas Gregor · 15 years ago
- aaf8716 Teach typo correction about various language keywords. We can't by Douglas Gregor · 15 years ago
- 55b3884 When diagnosing suspicious precedence or assignments, move the fix-it by Douglas Gregor · 15 years ago
- 96c250a Speculatively revert "IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself.", I think it might be breaking bootstrap. by Daniel Dunbar · 15 years ago
- 86d0ef7 Improve line marker directive locations, patch by Jordy Rose by Chris Lattner · 15 years ago
- 89cdaa9 IRgen: Move EmitStoreThroughBitfieldLValue to use new CGBitfieldInfo::AccessInfo decomposition, instead of computing the access policy itself. by Daniel Dunbar · 15 years ago
- 8877321 make the token paste avoidance logic turn "..." into ".. ." instead of ". . ." by Chris Lattner · 15 years ago
- dd17394 implement altivec.h and a bunch of support code, patch by Anton Yartsev! by Chris Lattner · 15 years ago
- 47bd543 Implement typo correction for Objective-C message sends when the by Douglas Gregor · 15 years ago
- f19de1c Mark a function declaration invalid if any of its parameter declarations by John McCall · 15 years ago
- 74256f5 Parse friend template ids as types instead of ending up in by John McCall · 15 years ago
- aa1d761 Add encoding of reference types like gcc does for objc methods and by Fariborz Jahanian · 15 years ago
- 21c0160 Fix an embarrasing memory error. I was apparently very tired when I wrote this by John McCall · 15 years ago
- 77e8b11 Support befriending members of class template specializations. by John McCall · 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
- 553e583 make the rewriter add a #ifndef around the #define of __attribute__. by Chris Lattner · 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
- 3d04336 Allow classes to befriend implicitly-declared members. Fixes PR6207 for 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
- 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
- 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
- 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
- 987aa87 Add fixit hint for missing ':' in ternary expressions. by Ted Kremenek · 15 years ago
- 0eea9f9 fix PR6660/6168: emit padding as zeros instead of undef. Because by Chris Lattner · 15 years ago
- 01e56ae Implement C++ [temp.local]p4, which specifies how we eliminate by Douglas Gregor · 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
- 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
- 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
- e8551e4 fix PR6287 by accepting and ignoring the returns_twice attribute. by Chris Lattner · 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
- 1ee6cad Add CIndex support for blocks. by Ted Kremenek · 15 years ago
- af6ddf2 Fix a bug where we were adding too many vcall offsets in some cases. by Anders Carlsson · 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
- 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
- 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
- 573021f Fix another vbase layout bug. 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
- 46116ce Rename -dump-record-layouts to -fdump-record-layouts now that the option behaves like aa flag. by Anders Carlsson · 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
- 467ebc9 Tweak test for portability. 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
- 59fc269 When a member pointer is dereferenced, the class it points into must be complete. Enforce this. by Sebastian Redl · 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
- 8bc9c55 Driver/Darwin/x86: When linking, incorporate -L paths based on the path where by Daniel Dunbar · 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
- 03a4bee Remove fixit for string literal comparison. Telling the user to use 'strcmp' is bad, and by Ted Kremenek · 15 years ago
- 7002f4c Turn access control on by default in -cc1. by John McCall · 15 years ago
- 08a4190 Improve diagnostics like "initializing <type> from an expression of by Douglas Gregor · 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
- 08c0cdf Forcibly disable test/PCH/pr4489.c, it is flaky on one of the buildbots. by Daniel Dunbar · 15 years ago
- d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 15 years ago
- 355fa3a Use '%clang_cc1' instead of '%clang' to make the warning output more consistent across 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
- b4c0c2d Match GCC's behavior and do not include '-Wunused-parameter' in '-Wunused'. by Ted Kremenek · 15 years ago