- 609508c Driver/Darwin: Darwin uses -fobjc-legacy-dispatch on ARM. by Daniel Dunbar · 15 years ago
- 984eb86 Driver/Frontend: Add support for -fobjc-legacy-dispatch, not yet used. by Daniel Dunbar · 15 years ago
- b9f7096 Don't explicitly force utf strings into the __TEXT,__ustring by Chris Lattner · 15 years ago
- 31310a2 In C++, an initializer on a variable doesn't necessarily mean it's the definition. With that in mind, rename getDefinition to getAnyInitializer (to distinguish it from getInit) and reimplement it in terms of isThisDeclarationADefinition. Update all code to use this new function. by Sebastian Redl · 15 years ago
- 342fec4 Note that an overload candidate was non-viable because template argument by John McCall · 15 years ago
- d17e340 Fix for PR5185. C99 [*] VLA notation should be disallowed in function definitions. by Sam Weinig · 15 years ago
- b13b737 Access checking for implicit user-defined conversions. by John McCall · 15 years ago
- e9d12b6 Add VarDecl::isThisDeclarationADefinition(), which properly encapsulates the logic for when a variable declaration is a (possibly tentativ) definition. Add a few functions building on this, and shift C tentative definition handling over to this new functionality. This shift also kills the Sema::TentativeDefinitions map and instead simply stores all declarations in the renamed list. The correct handling for multiple tentative definitions is instead shifted to the final walk of the list. by Sebastian Redl · 15 years ago
- 0938026 Diagnose binding a non-const reference to a vector element. by Anders Carlsson · 15 years ago
- 038cc39 Fix PR6159 and several other problems with value-dependent non-type template by Chandler Carruth · 15 years ago
- 9db7dbb Rework base and member initialization in constructors, with several by Douglas Gregor · 15 years ago
- 966146e Remove the SmallVectors from AsmStmt. Fixes PR6105. by Anders Carlsson · 15 years ago
- ff93dbd Use IdentifierInfo * instead of std::string for the AsmStmt names. by Anders Carlsson · 15 years ago
- 807b061 ASTUnit: Ensure the CompilerInvocation object used in LoadFromCommandLine is by Daniel Dunbar · 15 years ago
- 6228ca0 CompilerInstance: Change to not contain the CompilerInvocation object. by Daniel Dunbar · 15 years ago
- acb6bcb Even more AsmStmt cleanup. by Anders Carlsson · 15 years ago
- a5a79f7 More asm cleanup. by Anders Carlsson · 15 years ago
- fdba9c0 Combine AsmStmt::setOutputsAndInputs and AsmStmt::setClobbers. by Anders Carlsson · 15 years ago
- 83c021c Yay for more StringRefs. by Anders Carlsson · 15 years ago
- f959fb5 StringRef-ize the TargetInfo::ConstraintInfo constructor. by Anders Carlsson · 15 years ago
- 01aefc6 Recognize 'q' as a format length modifier (from BSD). by Daniel Dunbar · 15 years ago
- f22d1fd Use StringRef instead of returning a temporary std::string. by Benjamin Kramer · 15 years ago
- 500f189 Silence clang++ warning. by Benjamin Kramer · 15 years ago
- d635c5f Add basic type checking of format string conversion specifiers and their arguments. Thanks to Cristian Draghici for his help with this patch! by Ted Kremenek · 15 years ago
- 33567d2 Per a suggestion from Cristian Draghici, add a method to FormatSpecifier that returns the expected type of the matching data argument. It isn't complete, but should handle several of the important cases. by Ted Kremenek · 15 years ago
- f88c8e0 Switch Sema over to using the new implementation of format string by Ted Kremenek · 15 years ago
- 4dcb18f Enhancements to the alternate (WIP) format string checking: by Ted Kremenek · 15 years ago
- ef06e24 Fix reference-binding when we have a reference to const volatile type; by Douglas Gregor · 15 years ago
- ddc6b66 Fix typo found by clang++. Yay for -Wuninitialized. by Benjamin Kramer · 15 years ago
- 4e1c181 Add getters. by Anders Carlsson · 15 years ago
- e6d2a53 Simplify EmitLValueForField - we can get whether the field is part of a union or not from the FieldDecl (through its DeclContext). by Anders Carlsson · 15 years ago
- 808015a Alternate format string checking: issue warnings for incomplete format specifiers. by Ted Kremenek · 15 years ago
- 26ac2e0 Alternate format string checking: issue a warning for invalid conversion specifiers. by Ted Kremenek · 15 years ago
- eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
- 80cd64a Do a little magic and a little greasework to make it much more efficient by John McCall · 15 years ago
- e82d804 Alternate format string checking: warn of '%n' as being potentially insecure. by Ted Kremenek · 15 years ago
- 0d27735 Add precision/field width checking to AlternateCheckPrintfString(). by Ted Kremenek · 15 years ago
- 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 15 years ago
- 233a641 Access control for surrogate function calls. Required a moderately gross hack by John McCall · 15 years ago
- d93256e Introduce serialization and deserialization of diagnostic information by Douglas Gregor · 15 years ago
- a8d8fec Add position of conversion specifier character to 'ConversionSpecifier'. by Ted Kremenek · 15 years ago
- d2dcece Rename namespace clang::printf to clang::analyze_printf to avoid problems where the reference to 'printf' is ambiguous. by Ted Kremenek · 15 years ago
- 7e20ffe Fixes a rewrite bug rewriting nested ivars reference. (Radar 7583971). by Fariborz Jahanian · 15 years ago
- d5f2096 Allow HandleFormatSpecifier() to indicate that no more processing of the format string is desired. by Ted Kremenek · 15 years ago
- 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
- c7cbb9b Add '@' conversion specifier. by Ted Kremenek · 15 years ago
- 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
- 8f0a1c7 Add skeleton for a more structured way to analyzing pring format by Ted Kremenek · 15 years ago
- 78acdbf Move more naming conventions logic out of the retain/release checker to CocoaConventions.h. by Ted Kremenek · 15 years ago
- 8b752f1 Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 15 years ago
- 9d883b5 Silence a GCC warning about uninitialized variables. The first user of this by Chandler Carruth · 15 years ago
- a64e89b Start pulling out pieces of the monolithic retain/release checker into by Ted Kremenek · 15 years ago
- 3a18917 It's not Explicit anymore. by Anders Carlsson · 15 years ago
- c373d48 Implement access control for overloaded functions. Suppress access control by John McCall · 15 years ago
- f7b3374 Support -marm by treating it as an alias for -mno-thumb. by Daniel Dunbar · 15 years ago
- 5cc0251 Driver/Darwin: Disallow -m{macosx,iphoneos}-version-min as -Xarch arguments. by Daniel Dunbar · 15 years ago
- 13e635c Add const version of ObjCMethodDecl::getCanonicalDecl(). by Ted Kremenek · 15 years ago
- fee9081 Teach RegionStore to handle initialization of incomplete arrays in structures using a compound value. Fixes <rdar://problem/7515938>. by Ted Kremenek · 15 years ago
- 9705309 Move 'LocalCheckers.h' to the 'Checkers' subdirectory. by Ted Kremenek · 15 years ago
- f12d319 Move 'include/Checkers/PathSensitive/Checkers' directory to 'include/Checkers'. by Ted Kremenek · 15 years ago
- 013af39 Patch to add 'volatile' to first argument of all by Fariborz Jahanian · 15 years ago
- 7783bfc Bring some semblance of order into Decl.h and Decl.cpp. While at it, fix some typo comments and remove an unused and unimplemented function prototype. No functionality change. by Sebastian Redl · 15 years ago
- 16b55a7 Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk the set of files included in a translation unit via the C API. by Ted Kremenek · 15 years ago
- 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
- 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
- 3bb9269 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 15 years ago
- 16e20cc Correct cut-and-paste error in doxygen comment for newly introduced by Ken Dyck · 15 years ago
- 86fa431 Add getTypeAlignInChars() for use in code that works in alignments in character by Ken Dyck · 15 years ago
- fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
- b896f62 Replace inheritance of RegionRawOffset from std::pair with two private member by Ken Dyck · 15 years ago
- 7534516 Avoid some unnecessary copying of unresolved lookup results. by John McCall · 15 years ago
- 6e26689 Preserve access bits through overload resolution much better. Some by John McCall · 15 years ago
- e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
- 816bc31 Driver/Darwin: Honor IPHONEOS_DEPLOYMENT_TARGET. by Daniel Dunbar · 15 years ago
- 7a6ae74 Warn on top-level 'asm volatile' (instead of misparsing it). by John McCall · 15 years ago
- 6b67630 Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugReporter' by Ted Kremenek · 15 years ago
- 326be56 Add missing header. by Ted Kremenek · 15 years ago
- 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
- 3bd54cc ASTUnit: Don't check that input files exist when parsing ASTs from the command by Daniel Dunbar · 15 years ago
- fd9f234 Update comment. by Daniel Dunbar · 15 years ago
- 7a6e13a Fix a pretty bad bug where if a constructor (or conversion function) was marked as 'explicit', but then defined out-of-line, we would not treat it as being explicit. by Anders Carlsson · 15 years ago
- 0757c8c Implement [dcl.fct.spec]p6. by Anders Carlsson · 15 years ago
- 8a8fa25 Ok, turn back off -Wunreachable-code by default. by Mike Stump · 15 years ago
- 8b00be5 Mark PartialDiagnostic.h as a C++ header by Sebastian Redl · 15 years ago
- 703e394 Implement instantiation of AsmStmts (Crazy, I know) by Anders Carlsson · 15 years ago
- a57259e Tweak clang_visitChildren comment. by Daniel Dunbar · 15 years ago
- 1efcf3d Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. by Daniel Dunbar · 15 years ago
- 7e52de4 fix PR6034, a crash on invalid where the switch stack would get unbalanced. by Chris Lattner · 15 years ago
- 31819f5 add a prototype for __builtin_fpclassify. We don't know how to by Chris Lattner · 15 years ago
- 1b36a2f Use new initialization code when dealing with [dcl.init.aggr]p12. This fixes the bug where array elements and member initializers weren't copied correctly. by Anders Carlsson · 15 years ago
- b9ea98e Temporary flip default for -Wunreachable-code so some bots can test it by Mike Stump · 15 years ago
- e6dddfd Add bzero builtin; this should help codegen quality for code using this by Eli Friedman · 15 years ago
- e876419 Fix typo. by Anders Carlsson · 15 years ago
- 23e1ad0 Add doxygen comment to clang_getClangVersion(). by Ted Kremenek · 15 years ago
- 258b203 Produce a special diagnostic when users call a function with an argument of by John McCall · 15 years ago
- a729bbb Fix the EntityKind order so that all entity kinds that can be copied (using copy constructors) come first. Also, fix a bug where EK_New was left out of the err_init_conversion_failed diagnostic (It is now reported as 'new value'). Please review Doug :) by Anders Carlsson · 15 years ago
- 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
- a18f1b8 Rename getClangFullVendorVersion() to getClangFullVersion(). by Ted Kremenek · 15 years ago
- 92f8831 Implement elementary access control. by John McCall · 15 years ago
- 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago