- 0931797 Removed test that depended on ast-test by John Wiegley · 14 years ago
- 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 14 years ago
- 61d0b6b More cleanup of template argument deduction and its handling of by Douglas Gregor · 14 years ago
- b939625 Fix modified-header-crash.c for read-only source trees by Matt Beaumont-Gay · 14 years ago
- 21ff2e5 Implementation of Embarcadero array type traits by John Wiegley · 14 years ago
- 6bdda82 Update regex in scan-build for parsing statistics. by Ted Kremenek · 14 years ago
- a459cc2 Clean up the handling of non-CVR qualifiers in template argument by Douglas Gregor · 14 years ago
- 20c0da7 t/clang/type-traits by John Wiegley · 14 years ago
- 26517e4 Remove unused method CFGBlock::hasBinaryBranchTerminator(). by Ted Kremenek · 14 years ago
- 06d88ec Don't print fixits for format specifiers in cases where the fixit does not actually fix the warning. PR8781. by Eli Friedman · 14 years ago
- 251c27b Update scan-build to '-analyzer-checker debug.Stats' instead of the old '-analyzer-stats' -cc1 argument. by Ted Kremenek · 14 years ago
- 134cb44 Heh, funny thing, 'void' isn't a POD type. Nice of us to suggest it to by Chandler Carruth · 14 years ago
- 67d097e Re-enable byval for ARM in clang. rdar://problem/7662569 by Stuart Hastings · 14 years ago
- 14d56ef Some refactoring of my ms_struct patch. // rdar://8823265 related. by Fariborz Jahanian · 14 years ago
- 34a99e7 When printing a base-specifier, print the ellipsis ("...") if it is a by Douglas Gregor · 14 years ago
- 8703b1c ASTImporter support for NestedNameSpecifier, from Olaf Krzikalla by Douglas Gregor · 14 years ago
- 9a05fa9 This is the next step in building the standalone tools infrastructure: by Manuel Klimek · 14 years ago
- 4d8d803 More accurately model realloc() when the size argument is 0. realloc() with a size of 0 is equivalent to free(). The memory region should be marked as free and not used again. by Lenny Maiorani · 14 years ago
- 7ccc95b Add a warning (-Wnon-pod-memset) for calls to memset() with by Chandler Carruth · 14 years ago
- d46a112 Diagnose attempts to implicitly instantiate a template before it is by John McCall · 14 years ago
- 5ecdd78 Introduce a new parser annotation token for primary expressions. When by Douglas Gregor · 14 years ago
- 4d53be4 Remove this assert, I don't think it's being helpful and people have by Eric Christopher · 14 years ago
- d0719b1 Clean out some cruft I introduced when adding Sema::ClassifyName() by Douglas Gregor · 14 years ago
- d9d75e5 Simplify the parser's handling of Sema::ClassifyName() for types, by by Douglas Gregor · 14 years ago
- 6b4f567 Allow 'Environment::getSVal()' to allow an optional way for checkers to do a direct lookup to values bound to expressions, without by Ted Kremenek · 14 years ago
- eeeb2a2 Add the test that I intended to submit with r130055, but forgot to add. by Chandler Carruth · 14 years ago
- 0047012 Add support for Microsoft __interface keyword. An __interface class is basically a normal class containing just pure virtual functions. No urgency to enforce that restriction in clang for now, so make __interface an "class" alias. by Francois Pichet · 14 years ago
- b7d98d3 If a null statement was preceded by an empty macro keep its instantiation source location by Argyrios Kyrtzidis · 14 years ago
- 3b88735 Extend Sema::ClassifyName() to support C++, ironing out a few issues by Douglas Gregor · 14 years ago
- 173d512 When compiling with -fno-threadsafe-statics, guard variables for globals with internal linkage don't have to be i64, i8 works just fine! by Anders Carlsson · 14 years ago
- 6add6fb Fix test by Douglas Gregor · 14 years ago
- 27766d2 Improve diagnostics for typo correction via Sema::ClassifyName(), by by Douglas Gregor · 14 years ago
- 17ffd14 Add triple in the hope of unbreaking the bubuildbot by Douglas Gregor · 14 years ago
- f530751 FixOverloadedFunctionReference needs to rebuild member accesses of by John McCall · 14 years ago
- 0f7b3dc When comparing Objective-C pointers during overload resolution to by Douglas Gregor · 14 years ago
- 62055b0 With ms_struct attribut, Zero-length bitfields following by Fariborz Jahanian · 14 years ago
- 028ea4b When computing Objective-C pointer conversions in C++, retain by Douglas Gregor · 14 years ago
- 7412494 To be able to replay compilations we need to accurately remodel how by Manuel Klimek · 14 years ago
- 37833b0 We need pointer size in bits here. by Devang Patel · 14 years ago
- cd88b41 Gcc pads the size of an array using the alignment of its elements. by Argyrios Kyrtzidis · 14 years ago
- 864c041 Make yet another placeholder type, this one marking that an expression is a bound by John McCall · 14 years ago
- eab8078 IRgen/Darwin: Fix refacto introduced in Triple changes. by Daniel Dunbar · 14 years ago
- c1a0a73 Add ms_struct attribute on record typee (and ignore it for now) - wip. by Fariborz Jahanian · 14 years ago
- 8a285ae Emit a -Wnull-dereference warning for "*null" not just "*null = something". Addresses rdar://9269271. by Argyrios Kyrtzidis · 14 years ago
- 0cd7be4 Disable a test that fails on windows; for some reason we don't detect that the header has different timestamp. by Argyrios Kyrtzidis · 14 years ago
- 7a3a814 include/clang/AST/StmtIterator.h: std::pair should be provided by <utility>. libcxx needs it. by NAKAMURA Takumi · 14 years ago
- ad27eea Temporarily revert r130176, it appears to have broken a few tests. by Eric Christopher · 14 years ago
- 50811d2 Emit intrinsic at current insert point, not at the end of current block. by Devang Patel · 14 years ago
- df39fa2 Turn on byval parameters in Clang for ARM APCS. rdar://problem/7662569 by Stuart Hastings · 14 years ago
- e2d0191 Simplify. There is no need to have a method to just call another method. by Devang Patel · 14 years ago
- dd697bc Generalize case for built-in expressions having by Fariborz Jahanian · 14 years ago
- abdd3b3 For the warnings related to -Wparentheses, display first the note about how to silence the warning and by Argyrios Kyrtzidis · 14 years ago
- 72e3a0a Re-enable disable free optimization where the FrontendAction is not freed when -disable-free is passed. This accidentally was commited in r128011. by Ted Kremenek · 14 years ago
- 1e713f5 When generating printf fixits, preserve the original formating for unsigned integers (e.g., 'x', 'o'). by Ted Kremenek · 14 years ago
- ec99195 Ir-gen the side-effect(s) when __builtin_expect is by Fariborz Jahanian · 14 years ago
- 8d8f2c2 Fix a crash when ASTReader emits diagnostic when another one is in flight. Fixes rdar//9334563. by Argyrios Kyrtzidis · 14 years ago
- 357f6ee Implements the strncmp() checker just like the strcmp() checker, but with bounds. Requires LLVM svn r129582. by Lenny Maiorani · 14 years ago
- 865dd8c 'extern' variables in functions don't shadow externs in global scope. Fixes rdar://8883302, this time for C++ as well. by Argyrios Kyrtzidis · 14 years ago
- 014f972 Add libstdc++ search paths for GCC 4.6.0 on Arch Linux. Patch by Jakub Wieczorek. by Nico Weber · 14 years ago
- 8ac127a Driver: When compilation fails, don't try to remove output files we don't have by Daniel Dunbar · 14 years ago
- 85e59d7 don't use compound literals in MM macros, since they will be instantiated by Chris Lattner · 14 years ago
- 223de24 fix PR9474, a crash with -fshort-enum and C++ templates: when instantiating by Chris Lattner · 14 years ago
- 62c9258 Recognize gcc's ms_struct pragma (and ignore for now). This is wip. by Fariborz Jahanian · 14 years ago
- 621c92a Minor tweak to avoid having to dig through canonical types multiple times when checking a qualification conversion by Douglas Gregor · 14 years ago
- 8d5fcc7 Add Windows SEH keywords. by Francois Pichet · 14 years ago
- ec385cf When Sema::ClassifyName() finds an invalid ivar reference, return an by Douglas Gregor · 14 years ago
- 81542fd Remove some more hard CR-LF lines. These were particularly weird as they were by Chandler Carruth · 14 years ago
- 8c54cb9 Set the native EOL property on this now that I've fixed it. Fixing some other by Chandler Carruth · 14 years ago
- 5526220 t/clang/expr-traits by John Wiegley · 14 years ago
- 62395c9 Remove hard coded dos line endings, let subversion translate them on update. by Chandler Carruth · 14 years ago
- 80585d8 Let clang detect gcc triple on Ubuntu Natty. Patch by Thomas Jablin. by Nico Weber · 14 years ago
- 912d372 Missing bit of r130117. by Eli Friedman · 14 years ago
- a47317b PR4304: Add warning for designators in strict c89 mode. by Eli Friedman · 14 years ago
- 6e089c6 Use template magic to make dumping of vectors slightly less fragile. by Benjamin Kramer · 14 years ago
- 1a8c15a Convert size and alignment variables to CharUnits in EmitAggregateCopy(). No by Ken Dyck · 14 years ago
- 5ff1a35 Convert type size and alignment to CharUnits in CheckAggExprForMemSetUse(). by Ken Dyck · 14 years ago
- 02c4533 Convert the return type of GetNumNonZeroBytesInInit() to CharUnits. No by Ken Dyck · 14 years ago
- 479b61c Eliminate some literal 8s by converting size variables in EmitGCMove() and by Ken Dyck · 14 years ago
- 243a4aa Replace calls to ASTContext::getTypeInfo() with calls to by Ken Dyck · 14 years ago
- 3256de7 Simplify AppendTailPadding() by converting its parameter to CharUnits. No by Ken Dyck · 14 years ago
- 737978d Eliminate literal 8s from LayoutUnionField by converting NumBytesToAppend to by Ken Dyck · 14 years ago
- edda6e4 Eliminate literal 8s from LayoutBitField(), converting variables to by Ken Dyck · 14 years ago
- 74b485a Set the correct anonymous namespace (must be last reopening), and behave correctly in the presence of the ever-annoying linkage specifications. by Sebastian Redl · 14 years ago
- 7c0837f Fix adding an anonymous namespace in a chained PCH to a namespace from a previous PCH. by Sebastian Redl · 14 years ago
- 58a2cd8 Synthesizing the definition of an implicit member is an AST modification, so notify any mutation listeners of it. This fixes a crasher in chained PCH, where an implicit destructor in a PCH gets a definition in a chained PCH, which is then lost. However, any further use of the destructor would cause its definition to be regenerated in the final file, hiding the bug. by Sebastian Redl · 14 years ago
- 024e1c4 On reading DeclContexts from PCH, check for visible updates even if the context was empty in the original version. Also, if there are any, tell the context that it has external visible decls. This fixes the problem that a namespace that was empty in the initial PCH (could also happen if the initial PCH didn't include any std header but caused implicit creation of namespace std, e.g. due to implicit declaration of a virtual destructor) never found any declaration declared in *any* chained PCH. Very ugly when the chained PCH includes all that std stuff, as the errors were effectively the same as not including std headers. by Sebastian Redl · 14 years ago
- d941fa4 Make the invalid declarator recovery when parsing members work the same as when parsing global decls. It's still rather broken (skipping much too far when the declarator belongs to a function definition), but at least not so broken as to mismatch braces. Tested by the removal of the fixme in the template test case. by Sebastian Redl · 14 years ago
- 9856c99 Give MultiplexConsumer.h a header guard. by Sebastian Redl · 14 years ago
- b5ef3ca Fix PathDiagnosticClients.h header guard. (Case error) by Sebastian Redl · 14 years ago
- c1d3ffb Store the full list of pending instantiations in a chained PCH. Previously we attempted to store only new pending instantiations, but our filter was incorrect, dropping implicit instantiations of class template members. It's just not worth coming up with a complex filter that is correct, when the only cost is PCH files that are a few hundred bytes (at most) larger. by Sebastian Redl · 14 years ago
- a5d318a Downgrade unnecessary "typename" from error to warning in Microsoft mode. by Francois Pichet · 14 years ago
- b9e6b2c Convert AccessInfo::AccessAlignment to CharUnits. No change in functionality by Ken Dyck · 14 years ago
- c556ef2 PR9214: Convert the DIBuilder API to use ArrayRef. by Jay Foad · 14 years ago
- 28ebde5 Convert CGBitFieldInfo::FieldByteOffset to CharUnits. No change in by Ken Dyck · 14 years ago
- c0a4559 GCC seems to create address-of expression manglings when passing *any* by John McCall · 14 years ago
- a0ce15c Update the mangler for some of the "new" unresolved-name manglings. by John McCall · 14 years ago
- 312eadb Implement a new identifier-classification scheme where Sema by Douglas Gregor · 14 years ago
- 1b60052 The ABI settled on mangling float literals with lowercase hex dumps. by John McCall · 14 years ago
- 1501ba3 Put -Wunneeded-internal-declaration under UnusedFunction group so it will be disabled with -Wno-unused-function. by Argyrios Kyrtzidis · 14 years ago
- 9b6347c Implement most of the remaining logic in __is_literal type trait. This by Chandler Carruth · 14 years ago