https://github.com/sam-mccall created
https://github.com/llvm/llvm-project/pull/78714
None
>From 97276e961ffb146182712832a346b2ee5d13bc30 Mon Sep 17 00:00:00 2001
From: Sam McCall
Date: Fri, 19 Jan 2024 14:45:51 +0100
Subject: [PATCH] [include-cleaner] Add --only-headers flag, opposite of
--i
https://github.com/sam-mccall closed
https://github.com/llvm/llvm-project/pull/78714
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/sam-mccall edited
https://github.com/llvm/llvm-project/pull/69449
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/sam-mccall approved this pull request.
Thanks! Looks great, just comment nits
https://github.com/llvm/llvm-project/pull/69449
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe
@@ -0,0 +1,15 @@
+// RUN: %clang_cc1 -x c++ -std=c++14 -fsyntax-only -verify %s
+
+template
+using Type = typename A::NestedType; // expected-error {{type 'float' cannot
be used prior to '::' because it has no members}}
+
+template
+void Func() {
+ using MyType = Type(); // ex
@@ -2649,7 +2649,9 @@ TypeSourceInfo
*Sema::SubstFunctionDeclType(TypeSourceInfo *T,
} else {
Result = Instantiator.TransformType(TLB, TL);
}
- if (Result.isNull())
+ // When clang goes into recovery mode, it might substitute
sam-mccall wrote:
Not s
https://github.com/sam-mccall edited
https://github.com/llvm/llvm-project/pull/68329
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/sam-mccall commented:
Thanks! This is a bit subtle, so I'm being a bit picky...
Can you add a more useful commit message?
https://github.com/llvm/llvm-project/pull/68329
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https:
@@ -1070,6 +1063,24 @@ void USRGenerator::VisitMSGuidDecl(const MSGuidDecl *D) {
D->NamedDecl::printName(Out);
}
+void USRGenerator::VisitBaseUsingDecl(const BaseUsingDecl *D) {
+ // Add the filename when needed to disambiguate using decls from different
+ // files.
+ if
@@ -1070,6 +1063,24 @@ void USRGenerator::VisitMSGuidDecl(const MSGuidDecl *D) {
D->NamedDecl::printName(Out);
}
+void USRGenerator::VisitBaseUsingDecl(const BaseUsingDecl *D) {
+ // Add the filename when needed to disambiguate using decls from different
+ // files.
+ if
@@ -1070,6 +1063,24 @@ void USRGenerator::VisitMSGuidDecl(const MSGuidDecl *D) {
D->NamedDecl::printName(Out);
}
+void USRGenerator::VisitBaseUsingDecl(const BaseUsingDecl *D) {
+ // Add the filename when needed to disambiguate using decls from different
+ // files.
--
@@ -1070,6 +1063,24 @@ void USRGenerator::VisitMSGuidDecl(const MSGuidDecl *D) {
D->NamedDecl::printName(Out);
}
+void USRGenerator::VisitBaseUsingDecl(const BaseUsingDecl *D) {
+ // Add the filename when needed to disambiguate using decls from different
+ // files.
+ if
Author: Sam McCall
Date: 2023-10-19T11:34:08+02:00
New Revision: 7338eb561c48803ec244cd6116154163f56e9717
URL:
https://github.com/llvm/llvm-project/commit/7338eb561c48803ec244cd6116154163f56e9717
DIFF:
https://github.com/llvm/llvm-project/commit/7338eb561c48803ec244cd6116154163f56e9717.diff
LO
Very late, & by email since phab is down.
Going to land this based on "LG" comment & offline discussion, happy to do
followups if needed.
On Mon, Nov 28, 2022 at 10:08 PM Kadir Cetinkaya via Phabricator <
revi...@reviews.llvm.org> wrote:
> kadircet added a comment.
>
> thanks LG, i'd like to hea
Author: Sam McCall
Date: 2023-10-20T11:47:29+02:00
New Revision: b99f7e6954691efae2d60a1af21f8c1b71a0f786
URL:
https://github.com/llvm/llvm-project/commit/b99f7e6954691efae2d60a1af21f8c1b71a0f786
DIFF:
https://github.com/llvm/llvm-project/commit/b99f7e6954691efae2d60a1af21f8c1b71a0f786.diff
LO
https://github.com/sam-mccall created
https://github.com/llvm/llvm-project/pull/69723
new fast checks:
bugprone-compare-pointer-to-member-variable
bugprone-empty-catch
bugprone-inc-dec-in-conditions
bugprone-incorrect-enable-if
bugprone-multi-level-implicit-pointer-conversion
bugpron
sam-mccall wrote:
(this diff isn't great news for the idea of treating new checks as slow by
default :-()
https://github.com/llvm/llvm-project/pull/69723
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/li
https://github.com/sam-mccall edited
https://github.com/llvm/llvm-project/pull/69908
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -663,10 +663,13 @@ SourceManager::createExpansionLocImpl(const ExpansionInfo
&Info,
return SourceLocation::getMacroLoc(LoadedOffset);
}
LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info));
- // FIXME: Produce a proper diagnostic for this case.
- a
https://github.com/sam-mccall commented:
Upgrading this from assert to diag+crash makes sense to me.
Am I missing where the crash happens though?
https://github.com/llvm/llvm-project/pull/69908
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
ht
@@ -356,6 +356,8 @@ def err_file_modified : Error<
"file '%0' modified since it was first processed">, DefaultFatal;
def err_file_too_large : Error<
"sorry, unsupported: file '%0' is too large for Clang to process">;
+def err_expansions_too_large : Error<
s
https://github.com/sam-mccall approved this pull request.
LG but would be great if we could fix the note!
https://github.com/llvm/llvm-project/pull/69908
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/lis
https://github.com/sam-mccall edited
https://github.com/llvm/llvm-project/pull/69908
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -356,6 +356,8 @@ def err_file_modified : Error<
"file '%0' modified since it was first processed">, DefaultFatal;
def err_file_too_large : Error<
"sorry, unsupported: file '%0' is too large for Clang to process">;
+def err_expansions_too_large : Error<
s
@@ -663,10 +663,15 @@ SourceManager::createExpansionLocImpl(const ExpansionInfo
&Info,
return SourceLocation::getMacroLoc(LoadedOffset);
}
LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info));
- // FIXME: Produce a proper diagnostic for this case.
- a
@@ -663,10 +663,15 @@ SourceManager::createExpansionLocImpl(const ExpansionInfo
&Info,
return SourceLocation::getMacroLoc(LoadedOffset);
}
LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info));
- // FIXME: Produce a proper diagnostic for this case.
- a
https://github.com/sam-mccall approved this pull request.
https://github.com/llvm/llvm-project/pull/69908
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/sam-mccall edited
https://github.com/llvm/llvm-project/pull/66462
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -104,6 +107,8 @@ struct PreambleData {
IncludeStructure Includes;
// Captures #include-mapping information in #included headers.
std::shared_ptr Pragmas;
+ // Information about module files for this preamble.
+ std::optional DependentModulesInfo;
sam
@@ -104,6 +107,8 @@ struct PreambleData {
IncludeStructure Includes;
// Captures #include-mapping information in #included headers.
std::shared_ptr Pragmas;
+ // Information about module files for this preamble.
+ std::optional DependentModulesInfo;
sam
@@ -0,0 +1,78 @@
+//=== ModuleDependencyScanner.cpp *-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,78 @@
+//=== ModuleDependencyScanner.cpp *-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,55 @@
+//===-- ProjectModules.h -*-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,78 @@
+//=== ModuleDependencyScanner.cpp *-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,90 @@
+//===-- ModuleDependencyScanner.h *-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,278 @@
+//===- PrerequisiteModules.cpp ---*-
+//C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifi
https://github.com/sam-mccall commented:
Thanks, this looks really close to me!
Tried to focus on how the components fit together, the details of module
building and reuse can easily be tweaked later if needed.
https://github.com/llvm/llvm-project/pull/66462
@@ -0,0 +1,141 @@
+//===- PrerequisiteModules.h -*-
+//C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifi
@@ -0,0 +1,78 @@
+//=== ModuleDependencyScanner.cpp *-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,78 @@
+//=== ModuleDependencyScanner.cpp *-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,278 @@
+//===- PrerequisiteModules.cpp ---*-
+//C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifi
@@ -0,0 +1,141 @@
+//===- PrerequisiteModules.h -*-
+//C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifi
@@ -0,0 +1,90 @@
+//===-- ModuleDependencyScanner.h *-
C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
@@ -0,0 +1,278 @@
+//===- PrerequisiteModules.cpp ---*-
+//C++-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifi
Author: sammccall
Date: Mon Aug 26 10:47:44 2019
New Revision: 369934
URL: http://llvm.org/viewvc/llvm-project?rev=369934&view=rev
Log:
[clangd] Release notes
Modified:
clang-tools-extra/trunk/docs/ReleaseNotes.rst
Modified: clang-tools-extra/trunk/docs/ReleaseNotes.rst
URL:
http://llvm.org
Author: sammccall
Date: Mon Aug 26 23:58:05 2019
New Revision: 370022
URL: http://llvm.org/viewvc/llvm-project?rev=370022&view=rev
Log:
Revert "[clangd] Release notes" (wrong branch)
This reverts commit 51029e5c153bd33efa015e2ec35b60247d046ce4.
Modified:
clang-tools-extra/trunk/docs/ReleaseN
Author: sammccall
Date: Tue Aug 27 01:44:06 2019
New Revision: 370029
URL: http://llvm.org/viewvc/llvm-project?rev=370029&view=rev
Log:
[clangd] Fix toHalfOpenFileRange where start/end endpoints are in different
files due to #include
Summary: https://github.com/clangd/clangd/issues/129
Reviewer
Author: sammccall
Date: Tue Aug 27 02:27:00 2019
New Revision: 370030
URL: http://llvm.org/viewvc/llvm-project?rev=370030&view=rev
Log:
[clangd] Fix for r370029 test that got left in my client
Modified:
clang-tools-extra/trunk/clangd/unittests/SourceCodeTests.cpp
Modified: clang-tools-extra/
Author: sammccall
Date: Wed Aug 28 05:05:12 2019
New Revision: 370191
URL: http://llvm.org/viewvc/llvm-project?rev=370191&view=rev
Log:
[clangd] Fix SelectionTree to allow selection range expression in foreach loops.
Reviewers: hokein
Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadir
Author: sammccall
Date: Wed Aug 28 05:08:57 2019
New Revision: 370193
URL: http://llvm.org/viewvc/llvm-project?rev=370193&view=rev
Log:
[clang-tidy] readability-identifier-naming shouldn't complain about CRTP
pseudo-overrides
Reviewers: ilya-biryukov
Subscribers: xazax.hun, cfe-commits
Tags: #
Author: sammccall
Date: Wed Aug 28 09:41:22 2019
New Revision: 370229
URL: http://llvm.org/viewvc/llvm-project?rev=370229&view=rev
Log:
[clangd] Migrate last tweak tests to TweakTesting.h and remove old helpers. NFC
Modified:
clang-tools-extra/trunk/clangd/unittests/TweakTests.cpp
Modified:
Author: sammccall
Date: Wed Aug 28 14:05:49 2019
New Revision: 370262
URL: http://llvm.org/viewvc/llvm-project?rev=370262&view=rev
Log:
Revert "[clangd] Migrate last tweak tests to TweakTesting.h and remove old
helpers. NFC"
This reverts commit 8f85685b5cf57eddea11fa444503ade220c724e4, which
bre
Author: sammccall
Date: Thu Aug 29 01:20:48 2019
New Revision: 370304
URL: http://llvm.org/viewvc/llvm-project?rev=370304&view=rev
Log:
Reland "[clangd] Migrate last tweak tests to TweakTesting.h and remove old
helpers. NFC"
This reverts commit 3dcf55aa45bad800533b36b70a14ebeb2b84e219, and avoid
Author: sammccall
Date: Tue Sep 3 04:35:50 2019
New Revision: 370746
URL: http://llvm.org/viewvc/llvm-project?rev=370746&view=rev
Log:
[clangd] Add targetDecl(), which determines what declaration an AST node refers
to.
Summary:
This is the first part of an effort to "unbundle" our libIndex use
Author: sammccall
Date: Tue Sep 3 06:54:27 2019
New Revision: 370757
URL: http://llvm.org/viewvc/llvm-project?rev=370757&view=rev
Log:
[clangd] Wrong attribute on debug function in r370746
Modified:
clang-tools-extra/trunk/clangd/FindTarget.cpp
Modified: clang-tools-extra/trunk/clangd/FindT
Author: sammccall
Date: Tue Sep 3 07:12:48 2019
New Revision: 370759
URL: http://llvm.org/viewvc/llvm-project?rev=370759&view=rev
Log:
[clangd] Decouple macro/decl-under-cursor finding. Don't pretend there can be
multiple macros. NFC.
Modified:
clang-tools-extra/trunk/clangd/XRefs.cpp
Modi
Author: sammccall
Date: Tue Sep 3 08:34:47 2019
New Revision: 370768
URL: http://llvm.org/viewvc/llvm-project?rev=370768&view=rev
Log:
[clangd] Move getBeginningOfIdentifier from ClangdUnit to SourceCode. Drop
dependencies on ClangdUnit from some headers. NFC
Modified:
clang-tools-extra/tru
Author: sammccall
Date: Wed Sep 4 00:35:00 2019
New Revision: 370843
URL: http://llvm.org/viewvc/llvm-project?rev=370843&view=rev
Log:
[clangd] Split Preamble.h out of ClangdUnit.h. NFC
Summary:
Add comment describing use of preamble in clangd.
Remove deps on ClangdUnit.h where possible.
Subscr
Author: sammccall
Date: Wed Sep 4 02:46:06 2019
New Revision: 370862
URL: http://llvm.org/viewvc/llvm-project?rev=370862&view=rev
Log:
[clangd] Rename ClangdUnit.h -> ParsedAST.h. NFC
This much better reflects what is (now) in this header.
Maybe a rename to ParsedTU would be an improvement, but
Author: sammccall
Date: Wed Sep 4 02:53:24 2019
New Revision: 370864
URL: http://llvm.org/viewvc/llvm-project?rev=370864&view=rev
Log:
[clangd] Move threading helper to more appropriate header. NFC
Modified:
clang-tools-extra/trunk/clangd/CodeComplete.cpp
clang-tools-extra/trunk/clangd/T
Author: sammccall
Date: Wed Sep 4 03:01:05 2019
New Revision: 370865
URL: http://llvm.org/viewvc/llvm-project?rev=370865&view=rev
Log:
[clangd] Remove obsolete includes. NFC
Modified:
clang-tools-extra/trunk/clangd/Threading.h
clang-tools-extra/trunk/clangd/Trace.cpp
clang-tools-extr
Author: sammccall
Date: Wed Sep 4 03:15:27 2019
New Revision: 370869
URL: http://llvm.org/viewvc/llvm-project?rev=370869&view=rev
Log:
[clangd] Remove macro-expansion-location from getBeginningOfIdentifier. Inline
into relevant callsites. NFC
Modified:
clang-tools-extra/trunk/clangd/SourceC
Author: sammccall
Date: Wed Sep 4 05:15:20 2019
New Revision: 370884
URL: http://llvm.org/viewvc/llvm-project?rev=370884&view=rev
Log:
[clangd] Fix SelectionTree behavior on implicit 'this'
Modified:
clang-tools-extra/trunk/clangd/Selection.cpp
clang-tools-extra/trunk/clangd/unittests/Se
Author: sammccall
Date: Mon Sep 9 04:34:01 2019
New Revision: 371390
URL: http://llvm.org/viewvc/llvm-project?rev=371390&view=rev
Log:
[clangd] Update clangd-vscode docs to be more user-focused.
Summary: Relegate "updating the extension" docs to a separate file.
Reviewers: hokein, kadircet
Sub
Author: Sam McCall
Date: 2020-01-02T16:36:21+01:00
New Revision: 8d7ecc16291ff415da0d5bfccb6363590a1310ad
URL:
https://github.com/llvm/llvm-project/commit/8d7ecc16291ff415da0d5bfccb6363590a1310ad
DIFF:
https://github.com/llvm/llvm-project/commit/8d7ecc16291ff415da0d5bfccb6363590a1310ad.diff
LO
Author: Sam McCall
Date: 2020-01-02T18:01:29+01:00
New Revision: acc4ffbb4733ec716d6ca3ad4d1e4605b9a2bcea
URL:
https://github.com/llvm/llvm-project/commit/acc4ffbb4733ec716d6ca3ad4d1e4605b9a2bcea
DIFF:
https://github.com/llvm/llvm-project/commit/acc4ffbb4733ec716d6ca3ad4d1e4605b9a2bcea.diff
LO
Author: Sam McCall
Date: 2020-01-03T18:18:40+01:00
New Revision: f06f439fadf740ea9019f2eb7f26ff88198ed375
URL:
https://github.com/llvm/llvm-project/commit/f06f439fadf740ea9019f2eb7f26ff88198ed375
DIFF:
https://github.com/llvm/llvm-project/commit/f06f439fadf740ea9019f2eb7f26ff88198ed375.diff
LO
Author: Sam McCall
Date: 2020-01-07T12:40:51+01:00
New Revision: c69ae835d0e0dc493eb09e75f0687a1390525440
URL:
https://github.com/llvm/llvm-project/commit/c69ae835d0e0dc493eb09e75f0687a1390525440
DIFF:
https://github.com/llvm/llvm-project/commit/c69ae835d0e0dc493eb09e75f0687a1390525440.diff
LO
Author: Sam McCall
Date: 2020-01-10T18:07:24+01:00
New Revision: 4c5a4514d14537cae5459e03d1fea422664b3bc2
URL:
https://github.com/llvm/llvm-project/commit/4c5a4514d14537cae5459e03d1fea422664b3bc2
DIFF:
https://github.com/llvm/llvm-project/commit/4c5a4514d14537cae5459e03d1fea422664b3bc2.diff
LO
Author: Sam McCall
Date: 2020-01-13T11:13:16+01:00
New Revision: e45fcfc3aa57bb237fd4fd694d0c257be66d5482
URL:
https://github.com/llvm/llvm-project/commit/e45fcfc3aa57bb237fd4fd694d0c257be66d5482
DIFF:
https://github.com/llvm/llvm-project/commit/e45fcfc3aa57bb237fd4fd694d0c257be66d5482.diff
LO
Author: Sam McCall
Date: 2020-09-14T10:43:42+02:00
New Revision: 30667c967d3f420d3f53fb1c9c2465550a1112df
URL:
https://github.com/llvm/llvm-project/commit/30667c967d3f420d3f53fb1c9c2465550a1112df
DIFF:
https://github.com/llvm/llvm-project/commit/30667c967d3f420d3f53fb1c9c2465550a1112df.diff
LO
Author: Sam McCall
Date: 2020-09-14T11:48:31+02:00
New Revision: 687e1d7121645d23aa5e919ed4d3c0e57af975cd
URL:
https://github.com/llvm/llvm-project/commit/687e1d7121645d23aa5e919ed4d3c0e57af975cd
DIFF:
https://github.com/llvm/llvm-project/commit/687e1d7121645d23aa5e919ed4d3c0e57af975cd.diff
LO
Author: Sam McCall
Date: 2020-09-16T13:42:01+02:00
New Revision: f5c7102dbc7223e98ce5c0f02b343ed92062987c
URL:
https://github.com/llvm/llvm-project/commit/f5c7102dbc7223e98ce5c0f02b343ed92062987c
DIFF:
https://github.com/llvm/llvm-project/commit/f5c7102dbc7223e98ce5c0f02b343ed92062987c.diff
LO
Author: Sam McCall
Date: 2020-09-22T19:43:41+02:00
New Revision: 625761825620f19a44c7a1482ce05d678a1b0deb
URL:
https://github.com/llvm/llvm-project/commit/625761825620f19a44c7a1482ce05d678a1b0deb
DIFF:
https://github.com/llvm/llvm-project/commit/625761825620f19a44c7a1482ce05d678a1b0deb.diff
LO
Author: Sam McCall
Date: 2020-09-24T01:20:09+02:00
New Revision: fa69b608063eecba76fb35d167b063cbfe532c28
URL:
https://github.com/llvm/llvm-project/commit/fa69b608063eecba76fb35d167b063cbfe532c28
DIFF:
https://github.com/llvm/llvm-project/commit/fa69b608063eecba76fb35d167b063cbfe532c28.diff
LO
Author: Sam McCall
Date: 2020-09-24T01:51:37+02:00
New Revision: 2bd5e3fb3cc032f90447067d38c48c75b23f32c5
URL:
https://github.com/llvm/llvm-project/commit/2bd5e3fb3cc032f90447067d38c48c75b23f32c5
DIFF:
https://github.com/llvm/llvm-project/commit/2bd5e3fb3cc032f90447067d38c48c75b23f32c5.diff
LO
Author: Sam McCall
Date: 2020-09-24T10:49:39+02:00
New Revision: 98756d865b696bece858ff0832ed3687b6b8ba4b
URL:
https://github.com/llvm/llvm-project/commit/98756d865b696bece858ff0832ed3687b6b8ba4b
DIFF:
https://github.com/llvm/llvm-project/commit/98756d865b696bece858ff0832ed3687b6b8ba4b.diff
LO
Author: Sam McCall
Date: 2020-09-24T11:57:31+02:00
New Revision: 00e05b12c76c396688cd8d4caac09a2e96851fd9
URL:
https://github.com/llvm/llvm-project/commit/00e05b12c76c396688cd8d4caac09a2e96851fd9
DIFF:
https://github.com/llvm/llvm-project/commit/00e05b12c76c396688cd8d4caac09a2e96851fd9.diff
LO
Author: Sam McCall
Date: 2020-09-24T22:49:44+02:00
New Revision: 1ad94624f8a092fbfcb74685e11243c186b04c8f
URL:
https://github.com/llvm/llvm-project/commit/1ad94624f8a092fbfcb74685e11243c186b04c8f
DIFF:
https://github.com/llvm/llvm-project/commit/1ad94624f8a092fbfcb74685e11243c186b04c8f.diff
LO
Author: Tadeo Kondrak
Date: 2020-09-28T13:37:18+02:00
New Revision: 018066d9475dac8d4b7a91bf967ea9231ff4b3f1
URL:
https://github.com/llvm/llvm-project/commit/018066d9475dac8d4b7a91bf967ea9231ff4b3f1
DIFF:
https://github.com/llvm/llvm-project/commit/018066d9475dac8d4b7a91bf967ea9231ff4b3f1.diff
Author: Sam McCall
Date: 2020-08-27T15:24:17+02:00
New Revision: 266825620c7f8d10d48abd0346527cea50c8202d
URL:
https://github.com/llvm/llvm-project/commit/266825620c7f8d10d48abd0346527cea50c8202d
DIFF:
https://github.com/llvm/llvm-project/commit/266825620c7f8d10d48abd0346527cea50c8202d.diff
LO
Author: Sam McCall
Date: 2020-12-09T17:40:12+01:00
New Revision: 634a377bd8cbaa515a58295cfd85dcb6a21381c1
URL:
https://github.com/llvm/llvm-project/commit/634a377bd8cbaa515a58295cfd85dcb6a21381c1
DIFF:
https://github.com/llvm/llvm-project/commit/634a377bd8cbaa515a58295cfd85dcb6a21381c1.diff
LO
Author: Sam McCall
Date: 2020-12-11T17:34:53+01:00
New Revision: 8a4390dc4768fcd929a7231717980ccb28f124f7
URL:
https://github.com/llvm/llvm-project/commit/8a4390dc4768fcd929a7231717980ccb28f124f7
DIFF:
https://github.com/llvm/llvm-project/commit/8a4390dc4768fcd929a7231717980ccb28f124f7.diff
LO
Author: Sam McCall
Date: 2020-12-11T17:35:50+01:00
New Revision: 4d956af594c5adc9d566d1846d86dd89c70c9c0b
URL:
https://github.com/llvm/llvm-project/commit/4d956af594c5adc9d566d1846d86dd89c70c9c0b
DIFF:
https://github.com/llvm/llvm-project/commit/4d956af594c5adc9d566d1846d86dd89c70c9c0b.diff
LO
Author: xndcn
Date: 2020-12-15T09:47:29+01:00
New Revision: 9c328e7afafd15795fed54e3b0c1c5bd4fa97dfa
URL:
https://github.com/llvm/llvm-project/commit/9c328e7afafd15795fed54e3b0c1c5bd4fa97dfa
DIFF:
https://github.com/llvm/llvm-project/commit/9c328e7afafd15795fed54e3b0c1c5bd4fa97dfa.diff
LOG: [c
Author: Sam McCall
Date: 2020-12-15T13:59:00+01:00
New Revision: 965d71c69acce658e9e3de00b25a351b00937820
URL:
https://github.com/llvm/llvm-project/commit/965d71c69acce658e9e3de00b25a351b00937820
DIFF:
https://github.com/llvm/llvm-project/commit/965d71c69acce658e9e3de00b25a351b00937820.diff
LO
Author: Sam McCall
Date: 2020-12-15T14:00:03+01:00
New Revision: 92dd077af1ff89929f5502c6c887358f51d5afc1
URL:
https://github.com/llvm/llvm-project/commit/92dd077af1ff89929f5502c6c887358f51d5afc1
DIFF:
https://github.com/llvm/llvm-project/commit/92dd077af1ff89929f5502c6c887358f51d5afc1.diff
LO
Author: Sam McCall
Date: 2020-12-15T14:17:54+01:00
New Revision: 5186eda3269333b2fb38800e9ded2a27ae87f99b
URL:
https://github.com/llvm/llvm-project/commit/5186eda3269333b2fb38800e9ded2a27ae87f99b
DIFF:
https://github.com/llvm/llvm-project/commit/5186eda3269333b2fb38800e9ded2a27ae87f99b.diff
LO
Author: Quentin Chateau
Date: 2020-12-15T16:32:22+01:00
New Revision: bda7d0af970718c243d93b22a8449c20156e574f
URL:
https://github.com/llvm/llvm-project/commit/bda7d0af970718c243d93b22a8449c20156e574f
DIFF:
https://github.com/llvm/llvm-project/commit/bda7d0af970718c243d93b22a8449c20156e574f.dif
Author: Sam McCall
Date: 2020-12-17T12:51:12+01:00
New Revision: 894c4761c67ac850e156a26aa427035a811d7aed
URL:
https://github.com/llvm/llvm-project/commit/894c4761c67ac850e156a26aa427035a811d7aed
DIFF:
https://github.com/llvm/llvm-project/commit/894c4761c67ac850e156a26aa427035a811d7aed.diff
LO
Author: Sam McCall
Date: 2020-12-18T11:16:46+01:00
New Revision: 98993193e9037345ad13720a62974064a5f3d953
URL:
https://github.com/llvm/llvm-project/commit/98993193e9037345ad13720a62974064a5f3d953
DIFF:
https://github.com/llvm/llvm-project/commit/98993193e9037345ad13720a62974064a5f3d953.diff
LO
Author: Sam McCall
Date: 2020-12-18T15:11:08+01:00
New Revision: 0336ff0a17e6aec831334aeb50e6685f6b184065
URL:
https://github.com/llvm/llvm-project/commit/0336ff0a17e6aec831334aeb50e6685f6b184065
DIFF:
https://github.com/llvm/llvm-project/commit/0336ff0a17e6aec831334aeb50e6685f6b184065.diff
LO
Author: Quentin Chateau
Date: 2020-12-18T16:27:09+01:00
New Revision: c46c7c9bcf9752971fe4bbcf67140c99066ad2e0
URL:
https://github.com/llvm/llvm-project/commit/c46c7c9bcf9752971fe4bbcf67140c99066ad2e0
DIFF:
https://github.com/llvm/llvm-project/commit/c46c7c9bcf9752971fe4bbcf67140c99066ad2e0.dif
Author: Sam McCall
Date: 2020-12-18T16:34:34+01:00
New Revision: 95c7b6cadbc9a3d4376ef44edbeb3c8bb5b8d7fc
URL:
https://github.com/llvm/llvm-project/commit/95c7b6cadbc9a3d4376ef44edbeb3c8bb5b8d7fc
DIFF:
https://github.com/llvm/llvm-project/commit/95c7b6cadbc9a3d4376ef44edbeb3c8bb5b8d7fc.diff
LO
Author: Sam McCall
Date: 2020-12-19T00:52:55+01:00
New Revision: b0615642f647bea1483659f1e14515a836015254
URL:
https://github.com/llvm/llvm-project/commit/b0615642f647bea1483659f1e14515a836015254
DIFF:
https://github.com/llvm/llvm-project/commit/b0615642f647bea1483659f1e14515a836015254.diff
LO
Author: Sam McCall
Date: 2020-12-19T02:03:40+01:00
New Revision: 2fced5a07b45ef527ac00a13e63bfca61e407ee3
URL:
https://github.com/llvm/llvm-project/commit/2fced5a07b45ef527ac00a13e63bfca61e407ee3
DIFF:
https://github.com/llvm/llvm-project/commit/2fced5a07b45ef527ac00a13e63bfca61e407ee3.diff
LO
Author: Sam McCall
Date: 2020-12-19T02:24:25+01:00
New Revision: 2b62e62328841b7d2dc01e390e13fb9151d06263
URL:
https://github.com/llvm/llvm-project/commit/2b62e62328841b7d2dc01e390e13fb9151d06263
DIFF:
https://github.com/llvm/llvm-project/commit/2b62e62328841b7d2dc01e390e13fb9151d06263.diff
LO
Author: Quentin Chateau
Date: 2020-12-21T20:19:25+01:00
New Revision: 3fa2d37eb3f8acddcfde749ca822f2cc7d900cbb
URL:
https://github.com/llvm/llvm-project/commit/3fa2d37eb3f8acddcfde749ca822f2cc7d900cbb
DIFF:
https://github.com/llvm/llvm-project/commit/3fa2d37eb3f8acddcfde749ca822f2cc7d900cbb.dif
langd)
On Tue, Dec 22, 2020, 2:26 AM David Blaikie wrote:
> Would be handy to include a comment to document which compiler version,
> etc - so we know when we can remove this/don't waste time trying to remove
> it too soon.
>
> On Thu, Dec 17, 2020 at 3:51 AM Sam McCall via cf
Author: Quentin Chateau
Date: 2020-12-22T08:54:28+01:00
New Revision: b8c37153d5393aad96feefe0b4689b7b62bc160d
URL:
https://github.com/llvm/llvm-project/commit/b8c37153d5393aad96feefe0b4689b7b62bc160d
DIFF:
https://github.com/llvm/llvm-project/commit/b8c37153d5393aad96feefe0b4689b7b62bc160d.dif
801 - 900 of 1737 matches
Mail list logo