- ef5b9c3 Correctly format pointers and references in casts. by Daniel Jasper · 12 years ago
- 1f0754b Understand unary operators after "return" and "case". by Daniel Jasper · 12 years ago
- 9a64fb5 Prefer splitting after "template <...>" and fix indentation. by Daniel Jasper · 12 years ago
- 723f030 Prefer to break after operators over breaking after "(". by Daniel Jasper · 12 years ago
- 4e24f0f s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few nearby 'C++0x' comments. by Richard Smith · 12 years ago
- 3b844ba Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to by Chandler Carruth · 12 years ago
- 80ad52f s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 12 years ago
- b99083e Re-sort #include lines using the llvm/utils/sort_includes.py script. by Chandler Carruth · 12 years ago
- 5d33440 Understand * and & in ternary expressions. by Daniel Jasper · 12 years ago
- 4dc41de Don't break after pointer or reference specifier. by Daniel Jasper · 12 years ago
- 62a833e Convert an if that never happens to an assert. by Rafael Espindola · 12 years ago
- 0b22708 Simplify vector splat code. No functionality change. by Benjamin Kramer · 12 years ago
- 6cc2a68 Silence some warnings and allow passing down some feature flags to the linker. by Rafael Espindola · 12 years ago
- d32b94d Remove some remnants of OwningExprResult / OwningStmtResult. by Nico Weber · 12 years ago
- d11f435 Simplify. No functionality change. by Nico Weber · 12 years ago
- 87b8127 Don't warn on unused member functions that are extern because of a typedef. by Rafael Espindola · 12 years ago
- 1f94f2b Formatter: parse and format inline namespaces like regular namespaces by Dmitri Gribenko · 12 years ago
- 2d382d1 [ubsan] Recover by default, use -fno-sanitize-recover to disable. by Will Dietz · 12 years ago
- de210a5 Use hasCLanguageLinkage when warning about non C return types. by Rafael Espindola · 12 years ago
- aa7dbaf Comment lexing: replace manual comparison with StringRef::find_first_of by Dmitri Gribenko · 12 years ago
- 9f0c692 Don't get confused if a extern "C" builtin function is redeclared without by Rafael Espindola · 12 years ago
- 01ad954 Remove the Function::getFnAttributes method in favor of using the AttributeSet by Bill Wendling · 12 years ago
- 9f40954 Don't warn for undefined but used decls that are external because of a typedef. by Rafael Espindola · 12 years ago
- 07cf58c ArrayRefize CXXTryStmt. by Nico Weber · 12 years ago
- d36aa35 ArrayRefize a CompoundStmt constructor. by Nico Weber · 12 years ago
- 5ba0c8e Fix a typo that caused a few standard library implementations of sort to by Chandler Carruth · 12 years ago
- f175765 Try to re-structure the GCCVersion comparison routine to make it easier by Chandler Carruth · 12 years ago
- 20af49a Minor cleanup. by Rafael Espindola · 12 years ago
- 78eeba8 Reject overloading of two static extern C functions. by Rafael Espindola · 12 years ago
- ceb59d9 Replace magic numbers in CheckICE with an enum. by Richard Smith · 12 years ago
- 9b403c5 PR14729: Fix typo in CheckICE for BinaryConditionalOperators. by Richard Smith · 12 years ago
- 0f46e64 Improve diagnostic wording for when an implicitly-deleted special member by Richard Smith · 12 years ago
- e8c0322 Add proper support for -fsanitize-blacklist= flag for TSan and MSan. Clang part. by Alexey Samsonov · 12 years ago
- e57e3d3 Implement dcl.link paragraph 5. by Rafael Espindola · 12 years ago
- 137d662 Fix a regression from the previous commit. by Rafael Espindola · 12 years ago
- 485458a Use the most recent redecl to decide if it is needed. by Rafael Espindola · 12 years ago
- 65d7831 Fix for PR12222. by Erik Verbruggen · 12 years ago
- 3898008 Add intel_ocl_bicc calling convention as a function attribute to clang. The calling convention is already implemented in LLVM. by Guy Benyei · 12 years ago
- 140aadf Add 171048 back but invalidate the cache of all redeclarations when setting by Rafael Espindola · 12 years ago
- eaf5ec4 Revert r171048, "Cache visibility of decls." by NAKAMURA Takumi · 12 years ago
- dfb3166 Cache visibility of decls. by Rafael Espindola · 12 years ago
- d7610b8 Let clang-format format itself. by Daniel Jasper · 12 years ago
- a4974cf Penalize tokens with a lower parenthesis level than the start of the line. by Daniel Jasper · 12 years ago
- cf225b6 Align RHS after assignments and return statements. by Daniel Jasper · 12 years ago
- f6aef6a Fix formatting over overloaded operators. by Daniel Jasper · 12 years ago
- 34ef11b Support -fsanitize-memory-track-origins. by Evgeniy Stepanov · 12 years ago
- cc6456c CGClass.cpp: [PR14335] Remove comma-separated \param, for now. [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
- 0a6b708 CGDecl.cpp: Prune three descriptions in two methods, CodeGenFunction::pushIrregularPartialArrayCleanup() and CodeGenFunction::pushRegularPartialArrayCleanup(). [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
- 14f9b5d DiagnosticRenderer.cpp: Prune one description in DiagnosticRenderer::emitMacroExpansions(). [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
- 0481e54 CGValue.h: Update one \param to Addr in MakeBitfield(). [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
- e2c7acf Take operator precedence into account when splitting lines. by Daniel Jasper · 12 years ago
- 00d5a04 libFormat: Teach the *& usage heuristic that "return" starts a rhs too. by Nico Weber · 12 years ago
- e6bb76c Move a declaration closer to its use. No functionality change. by Nico Weber · 12 years ago
- bb06b50 [libclang] Fix crash when code-completing a macro invocation that by Argyrios Kyrtzidis · 12 years ago
- ac50456 [libclang] Don't try to translate diagnostics from the precompiled preamble to the by Argyrios Kyrtzidis · 12 years ago
- 19e0d95 PR14695: Fix assert from bad cast<>. Not every namespace is a NamespaceDecl; it might instead be a TranslationUnitDecl. by Richard Smith · 12 years ago
- a734a0e Add back -Wduplicate-enum which I mistakenly removed. by Ted Kremenek · 12 years ago
- a05d274 Fix typo: objc_no_direct_instance_variable_assignmemt => objc_no_direct_instance_variable_assignment. by Ted Kremenek · 12 years ago
- 4b6bb40 [analyzer] Convert SimpleStreamChecker to use the PointerEscape callback by Anna Zaks · 12 years ago
- 3351536 Use a safe default width for template-diff'ing integral arguments, in by Douglas Gregor · 12 years ago
- d3292c8 Tweak Sema::CheckLiteralKind() to also include block literals by Ted Kremenek · 12 years ago
- 67a0f6e Add comments back that were accidentally removed in r170933. by Chad Rosier · 12 years ago
- 22aa690 Remove unused arguments and rename to conform to coding standards. by Chad Rosier · 12 years ago
- f530ff7 Change checkUnsafeAssignLiteral() to use the new Sema::CheckLiteralKind(). by Ted Kremenek · 12 years ago
- 3ee069b Hoist logic for classifying Objective-C literals into Sema (proper) for use with other diagnostics. by Ted Kremenek · 12 years ago
- d4ae653 Fixes couple of friend declaration -ast-print bug by Fariborz Jahanian · 12 years ago
- ccbb402 Indent. by Chad Rosier · 12 years ago
- 9cab1c9 Remove unnecessary checks. by Chad Rosier · 12 years ago
- e63a603 Use descriptive enum instead of raw integers for checkUnsafeAssignLiteral(). by Ted Kremenek · 12 years ago
- b29b30f Sink call to checkUnsafeAssignLiteral() into checkUnsafeAssignObject(). by Ted Kremenek · 12 years ago
- eb4c01e Fix indent. by Chad Rosier · 12 years ago
- b23ae0c format: Handle #import as include directive too. by Nico Weber · 12 years ago
- cd1a32b clang-format: No spaces around directory specifiers by Daniel Jasper · 12 years ago
- ab13751 Add ARM cortex-r5 subtarget as available mcpu by Quentin Colombet · 12 years ago
- 08165d8 [analyzer] Fix typos. by Anna Zaks · 12 years ago
- bd80231 [analyzer] Re-apply r170826 and make the dumping of the GallGraph deterministic. by Anna Zaks · 12 years ago
- 95f38f6 Sort the includes according to the coding standard. by Roman Divacky · 12 years ago
- 5f04ef5 Fix typo. by Fariborz Jahanian · 12 years ago
- 87aa2fb Remove duplicate includes. by Roman Divacky · 12 years ago
- a324a0e Basic support for formatting for-loops. by Daniel Jasper · 12 years ago
- bb6a7e0 Update comments. by Rafael Espindola · 12 years ago
- 675d2e3 Use OperatorPrecedence.h in clang-format by Daniel Jasper · 12 years ago
- 98e6b4a Formatting fixes for PR14680 by Daniel Jasper · 12 years ago
- 5cf1589 Fix regression in r170489: when instantiating a direct initializer which is a by Richard Smith · 12 years ago
- 9d08401 Extend checkUnsafeAssigns() to also handle assigning an object literal to a weak reference. by Ted Kremenek · 12 years ago
- b1ea510 Refactor checkUnsafeAssigns() to avoid code duplication with while loop. by Ted Kremenek · 12 years ago
- 0dbe2fb Reinstate r170806, reverted in r170835, with a fix use i1 instead of i8 for a value-initialized bool! by Richard Smith · 12 years ago
- 98ab776 Revert r170806, "Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member." by NAKAMURA Takumi · 12 years ago
- f1e5b15 [libclang] Follow-up to r170824, provide the correct number of arguments for by Argyrios Kyrtzidis · 12 years ago
- 1655bcd [analyzer] Address Jordan's nitpicks as per code review of r170625. by Anna Zaks · 12 years ago
- 6d42f4d Revert r170826. The output of by Rafael Espindola · 12 years ago
- 0db661e Don't eagerly emit a global static merged with a local extern. by Rafael Espindola · 12 years ago
- e34e193 [analyzer] Traverse the Call Graph in topological order. by Anna Zaks · 12 years ago
- 4f858df [analyzer] Add blocks and ObjC messages to the call graph. by Anna Zaks · 12 years ago
- cd0fd18 [libclang] Make sure we can code-complete inside a macro argument even though by Argyrios Kyrtzidis · 12 years ago
- f50b8f0 EditedSource.cpp: Appease msvc, to add <cctype>. by NAKAMURA Takumi · 12 years ago
- d8af340 Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member. by Richard Smith · 12 years ago
- 904a326 Revert "Warn if a __weak variable is initialized with an Objective-C object literal." by Ted Kremenek · 12 years ago
- 5964df1 Use some heuristics so that when a fixit removes a source range, we try by Argyrios Kyrtzidis · 12 years ago
- 7c44106 Warn if a __weak variable is initialized with an Objective-C object literal. by Ted Kremenek · 12 years ago