dexonsmith wrote:
I remember discovering that there are effectively two kinds of DISubprogram
already... one for declarations (which usually get uniqued/deduped) and another
for definitions (which I believe never do... IIRC they are always "distinct").
I imagine it would be possible/good to se
dexonsmith wrote:
> An immediate fix would be to not set the "identifier" field for the
> DICompositeType when it's created if it's inside a function scope to avoid
> ODRUniqing. I've only got a light understanding of what the identifier field
> is for, so there might be unexpected consequence
dexonsmith wrote:
@benlangmuir and @jansvoboda11 might also be good reviewers for this.
https://github.com/llvm/llvm-project/pull/91645
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/dexonsmith approved this pull request.
Amazing! LGTM, once the branch is clear.
https://github.com/llvm/llvm-project/pull/74910
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/c
dexonsmith wrote:
Interesting. Probably `Value::getMetadata()` could/should call
`DenseMap::find()` instead of `operator[]()` and assert that it's found before
dereferencing, because `Value::hasMetadata()` (which, IIRC, consults a bit
stored in `Value`) has already promised something will be t
dexonsmith wrote:
> Seems this got introduced in https://reviews.llvm.org/D34312 with the rough
> idea that we shouldn't inline into parts of the code that
> `_builtin_expect(...)` deems unlikely. Which makes sense when you express it
> like this, but I guess numeric thresholds can go wrong...
dexonsmith wrote:
Not entirely accidental. When BPI/BFI first landed it was heavily profiled to
be sure it didn't pessimize non-PGO code. I don't see why we'd suddenly be okay
with pessimizing it.
Under 2% isn't hard to hit for hot path code. Lots of functions will have
strings of early exit
dexonsmith wrote:
Not entirely accidental. When BPI/BFI first landed it was heavily profiled to
be sure it didn't pessimize non-PGO code. I don't see why we'd suddenly be okay
with pessimizing it.
Under 2% isn't hard to hit for hot path code. Lots of functions will have
strings of early exit
dexonsmith wrote:
Seems awkward to pessimize as "cold" when there's no real data (no PGO, no
other marking). What happens if you change the cold call threshold to 0% when
there's no PGO data? (I.e., never assume a call is cold without actual evidence)
https://github.com/llvm/llvm-project/pull/
Author: Duncan P. N. Exon Smith
Date: 2022-05-03T11:57:24-07:00
New Revision: c1e17c7dfedd27b95c8c2fba2b6473c7348f0e77
URL:
https://github.com/llvm/llvm-project/commit/c1e17c7dfedd27b95c8c2fba2b6473c7348f0e77
DIFF:
https://github.com/llvm/llvm-project/commit/c1e17c7dfedd27b95c8c2fba2b6473c7348f
Author: Duncan P. N. Exon Smith
Date: 2022-04-28T19:07:40-07:00
New Revision: 2d133867833fe8eb20c11377ff1221f71afc1db3
URL:
https://github.com/llvm/llvm-project/commit/2d133867833fe8eb20c11377ff1221f71afc1db3
DIFF:
https://github.com/llvm/llvm-project/commit/2d133867833fe8eb20c11377ff1221f71afc
Author: Duncan P. N. Exon Smith
Date: 2022-03-18T13:36:47-07:00
New Revision: 37e7cf7f1c6920d33a4a5dd3f0a415a61dd24731
URL:
https://github.com/llvm/llvm-project/commit/37e7cf7f1c6920d33a4a5dd3f0a415a61dd24731
DIFF:
https://github.com/llvm/llvm-project/commit/37e7cf7f1c6920d33a4a5dd3f0a415a61dd2
Author: Duncan P. N. Exon Smith
Date: 2022-01-11T17:47:23-08:00
New Revision: 3110060bc721a02e69ead4c56e037a03d31bedef
URL:
https://github.com/llvm/llvm-project/commit/3110060bc721a02e69ead4c56e037a03d31bedef
DIFF:
https://github.com/llvm/llvm-project/commit/3110060bc721a02e69ead4c56e037a03d31b
Author: Duncan P. N. Exon Smith
Date: 2022-01-11T17:01:46-08:00
New Revision: f0b2a1a629dab17f2ea161a9281d8dc63b37a7a0
URL:
https://github.com/llvm/llvm-project/commit/f0b2a1a629dab17f2ea161a9281d8dc63b37a7a0
DIFF:
https://github.com/llvm/llvm-project/commit/f0b2a1a629dab17f2ea161a9281d8dc63b37
Author: Duncan P. N. Exon Smith
Date: 2021-12-08T15:22:50-08:00
New Revision: cfd1d49dc0cc4369ace2e9485bdba04b27f158b5
URL:
https://github.com/llvm/llvm-project/commit/cfd1d49dc0cc4369ace2e9485bdba04b27f158b5
DIFF:
https://github.com/llvm/llvm-project/commit/cfd1d49dc0cc4369ace2e9485bdba04b27f1
Author: Duncan P. N. Exon Smith
Date: 2021-11-12T11:47:16-08:00
New Revision: 46a68c85bfc99f0bc651e5096a641d5d4051e99d
URL:
https://github.com/llvm/llvm-project/commit/46a68c85bfc99f0bc651e5096a641d5d4051e99d
DIFF:
https://github.com/llvm/llvm-project/commit/46a68c85bfc99f0bc651e5096a641d5d4051
Author: Duncan P. N. Exon Smith
Date: 2021-10-29T16:25:13-07:00
New Revision: 9091df5fad52ab6a281d7f4d6a508696e6f9fbae
URL:
https://github.com/llvm/llvm-project/commit/9091df5fad52ab6a281d7f4d6a508696e6f9fbae
DIFF:
https://github.com/llvm/llvm-project/commit/9091df5fad52ab6a281d7f4d6a508696e6f9
Looking now.
> On 2021 Oct 29, at 16:07, Nico Weber via Phabricator
> wrote:
>
> thakis added a comment.
>
> Looks like this breaks tests on windows:
> http://45.33.8.238/win/47971/step_7.txt
>
> Please take a look and revert for now if it takes a while to fix.
>
>
> Repository:
> rG LLV
Author: Duncan P. N. Exon Smith
Date: 2021-10-29T12:09:41-07:00
New Revision: 99023627010bbfefb71e25a2b4d056de1cbd354e
URL:
https://github.com/llvm/llvm-project/commit/99023627010bbfefb71e25a2b4d056de1cbd354e
DIFF:
https://github.com/llvm/llvm-project/commit/99023627010bbfefb71e25a2b4d056de1cbd
Author: Duncan P. N. Exon Smith
Date: 2021-10-25T13:44:45-07:00
New Revision: da47ec3ca076477b994a5fdd7b777aed9b8cbdf4
URL:
https://github.com/llvm/llvm-project/commit/da47ec3ca076477b994a5fdd7b777aed9b8cbdf4
DIFF:
https://github.com/llvm/llvm-project/commit/da47ec3ca076477b994a5fdd7b777aed9b8c
Author: Duncan P. N. Exon Smith
Date: 2021-10-22T12:40:10-07:00
New Revision: 2410fb4616b2c08bbaddd44e6c11da8285fbd1d3
URL:
https://github.com/llvm/llvm-project/commit/2410fb4616b2c08bbaddd44e6c11da8285fbd1d3
DIFF:
https://github.com/llvm/llvm-project/commit/2410fb4616b2c08bbaddd44e6c11da8285fb
Author: Duncan P. N. Exon Smith
Date: 2021-09-01T15:55:33-04:00
New Revision: 8976a1e111393aab7b4965196364ad734a17f2d5
URL:
https://github.com/llvm/llvm-project/commit/8976a1e111393aab7b4965196364ad734a17f2d5
DIFF:
https://github.com/llvm/llvm-project/commit/8976a1e111393aab7b4965196364ad734a17
Author: Duncan P. N. Exon Smith
Date: 2021-08-16T16:23:04-07:00
New Revision: d8a08fae0af9aa09c108b3e7c60f192249dd2098
URL:
https://github.com/llvm/llvm-project/commit/d8a08fae0af9aa09c108b3e7c60f192249dd2098
DIFF:
https://github.com/llvm/llvm-project/commit/d8a08fae0af9aa09c108b3e7c60f192249dd
Author: Duncan P. N. Exon Smith
Date: 2021-08-12T15:58:19-07:00
New Revision: b714f73defc8e0755c7c7cf043df1f1c21344839
URL:
https://github.com/llvm/llvm-project/commit/b714f73defc8e0755c7c7cf043df1f1c21344839
DIFF:
https://github.com/llvm/llvm-project/commit/b714f73defc8e0755c7c7cf043df1f1c2134
Author: Duncan P. N. Exon Smith
Date: 2021-08-12T15:16:08-07:00
New Revision: c130300f8ba0363749cf2490bbd43515fad8a759
URL:
https://github.com/llvm/llvm-project/commit/c130300f8ba0363749cf2490bbd43515fad8a759
DIFF:
https://github.com/llvm/llvm-project/commit/c130300f8ba0363749cf2490bbd43515fad8
Author: Zachary Henkel
Date: 2021-06-17T18:34:10-07:00
New Revision: 05d0f1a8ea012a6b7b8ea65893ec4121106444b5
URL:
https://github.com/llvm/llvm-project/commit/05d0f1a8ea012a6b7b8ea65893ec4121106444b5
DIFF:
https://github.com/llvm/llvm-project/commit/05d0f1a8ea012a6b7b8ea65893ec4121106444b5.diff
Author: Duncan P. N. Exon Smith
Date: 2021-05-13T10:39:40-07:00
New Revision: 7c57a9bd7d4c976b7a824472c427433359200e02
URL:
https://github.com/llvm/llvm-project/commit/7c57a9bd7d4c976b7a824472c427433359200e02
DIFF:
https://github.com/llvm/llvm-project/commit/7c57a9bd7d4c976b7a824472c42743335920
Author: Duncan P. N. Exon Smith
Date: 2021-05-13T10:22:40-07:00
New Revision: 23e9146fba298d38142337b615e17067fb8ccb91
URL:
https://github.com/llvm/llvm-project/commit/23e9146fba298d38142337b615e17067fb8ccb91
DIFF:
https://github.com/llvm/llvm-project/commit/23e9146fba298d38142337b615e17067fb8c
Author: Duncan P. N. Exon Smith
Date: 2021-05-13T10:10:46-07:00
New Revision: 7c2afd5899df876eaf5ffb485194dc58e92daf89
URL:
https://github.com/llvm/llvm-project/commit/7c2afd5899df876eaf5ffb485194dc58e92daf89
DIFF:
https://github.com/llvm/llvm-project/commit/7c2afd5899df876eaf5ffb485194dc58e92d
Author: Duncan P. N. Exon Smith
Date: 2021-05-03T10:50:09-07:00
New Revision: 64a390c1bc75eb55eeed3061df15dc581fd563e6
URL:
https://github.com/llvm/llvm-project/commit/64a390c1bc75eb55eeed3061df15dc581fd563e6
DIFF:
https://github.com/llvm/llvm-project/commit/64a390c1bc75eb55eeed3061df15dc581fd5
Author: Duncan P. N. Exon Smith
Date: 2021-04-22T11:29:39-07:00
New Revision: d4ee603c8f21b4ae722c2a34d4dfa54b7abeeb16
URL:
https://github.com/llvm/llvm-project/commit/d4ee603c8f21b4ae722c2a34d4dfa54b7abeeb16
DIFF:
https://github.com/llvm/llvm-project/commit/d4ee603c8f21b4ae722c2a34d4dfa54b7abe
Author: Duncan P. N. Exon Smith
Date: 2021-02-23T09:57:28-08:00
New Revision: 64d8c7818db2bd428d4e2a9f27661ee49225477f
URL:
https://github.com/llvm/llvm-project/commit/64d8c7818db2bd428d4e2a9f27661ee49225477f
DIFF:
https://github.com/llvm/llvm-project/commit/64d8c7818db2bd428d4e2a9f27661ee49225
Author: Duncan P. N. Exon Smith
Date: 2021-01-22T16:17:58-08:00
New Revision: ba5628f2c2a9de049b80b3e276f7e05f481c49e7
URL:
https://github.com/llvm/llvm-project/commit/ba5628f2c2a9de049b80b3e276f7e05f481c49e7
DIFF:
https://github.com/llvm/llvm-project/commit/ba5628f2c2a9de049b80b3e276f7e05f481c
Author: Duncan P. N. Exon Smith
Date: 2020-12-23T15:18:50-08:00
New Revision: 3ee43adfb20d5dc56b7043b314bd22f457c55483
URL:
https://github.com/llvm/llvm-project/commit/3ee43adfb20d5dc56b7043b314bd22f457c55483
DIFF:
https://github.com/llvm/llvm-project/commit/3ee43adfb20d5dc56b7043b314bd22f457c5
Author: Duncan P. N. Exon Smith
Date: 2020-12-23T14:57:41-08:00
New Revision: 245218bb355599771ba43a0fe1449d1670f2666c
URL:
https://github.com/llvm/llvm-project/commit/245218bb355599771ba43a0fe1449d1670f2666c
DIFF:
https://github.com/llvm/llvm-project/commit/245218bb355599771ba43a0fe1449d1670f2
Thanks for reverting; sorry I missed your email.
> On 2020 Dec 14, at 19:27, Nico Weber via Phabricator
> wrote:
>
> thakis added a comment.
>
> The revert helped, check-clang is no longer failing on Windows.
>
>
> Repository:
> rG LLVM Github Monorepo
>
> CHANGES SINCE LAST ACTION
> htt
Author: Duncan P. N. Exon Smith
Date: 2020-12-15T14:21:37-08:00
New Revision: 0eb4378290ffcd5da650217df3ac3b8c473d5ed6
URL:
https://github.com/llvm/llvm-project/commit/0eb4378290ffcd5da650217df3ac3b8c473d5ed6
DIFF:
https://github.com/llvm/llvm-project/commit/0eb4378290ffcd5da650217df3ac3b8c473d
Author: Duncan P. N. Exon Smith
Date: 2020-12-14T14:38:12-08:00
New Revision: b61f288a58e40430a739900ab74df61e711a2c55
URL:
https://github.com/llvm/llvm-project/commit/b61f288a58e40430a739900ab74df61e711a2c55
DIFF:
https://github.com/llvm/llvm-project/commit/b61f288a58e40430a739900ab74df61e711a
Author: Duncan P. N. Exon Smith
Date: 2020-12-14T14:36:59-08:00
New Revision: 90d056ceb97d5e3242a37dfc1c9f6bf11af9a053
URL:
https://github.com/llvm/llvm-project/commit/90d056ceb97d5e3242a37dfc1c9f6bf11af9a053
DIFF:
https://github.com/llvm/llvm-project/commit/90d056ceb97d5e3242a37dfc1c9f6bf11af9
Author: Duncan P. N. Exon Smith
Date: 2020-12-14T14:35:11-08:00
New Revision: a40db5502b2515a6f2f1676b5d7a655ae0f41179
URL:
https://github.com/llvm/llvm-project/commit/a40db5502b2515a6f2f1676b5d7a655ae0f41179
DIFF:
https://github.com/llvm/llvm-project/commit/a40db5502b2515a6f2f1676b5d7a655ae0f4
Author: Duncan P. N. Exon Smith
Date: 2020-12-11T17:34:00-08:00
New Revision: e095959e0c23e250d6ad1dbe3612291736d12e1a
URL:
https://github.com/llvm/llvm-project/commit/e095959e0c23e250d6ad1dbe3612291736d12e1a
DIFF:
https://github.com/llvm/llvm-project/commit/e095959e0c23e250d6ad1dbe3612291736d1
Author: Duncan P. N. Exon Smith
Date: 2020-12-11T17:07:58-08:00
New Revision: 8c86197de3cba4257f26133e837d64e5f8ece210
URL:
https://github.com/llvm/llvm-project/commit/8c86197de3cba4257f26133e837d64e5f8ece210
DIFF:
https://github.com/llvm/llvm-project/commit/8c86197de3cba4257f26133e837d64e5f8ec
Author: Duncan P. N. Exon Smith
Date: 2020-12-11T17:06:28-08:00
New Revision: a60043219907b8f370263b7d3d4827b83388d8cf
URL:
https://github.com/llvm/llvm-project/commit/a60043219907b8f370263b7d3d4827b83388d8cf
DIFF:
https://github.com/llvm/llvm-project/commit/a60043219907b8f370263b7d3d4827b83388
Author: Duncan P. N. Exon Smith
Date: 2020-12-10T18:05:03-08:00
New Revision: 494aacd72c6a85a6d586fa58a8481e13b68acf24
URL:
https://github.com/llvm/llvm-project/commit/494aacd72c6a85a6d586fa58a8481e13b68acf24
DIFF:
https://github.com/llvm/llvm-project/commit/494aacd72c6a85a6d586fa58a8481e13b68a
Author: Duncan P. N. Exon Smith
Date: 2020-12-10T13:57:21-08:00
New Revision: 0978c83e6fcc7a8aea18e24eb3b2ad5523581757
URL:
https://github.com/llvm/llvm-project/commit/0978c83e6fcc7a8aea18e24eb3b2ad5523581757
DIFF:
https://github.com/llvm/llvm-project/commit/0978c83e6fcc7a8aea18e24eb3b2ad552358
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T17:00:42-08:00
New Revision: 028e55d2d411f19e193e3d5df589162a317ab5f1
URL:
https://github.com/llvm/llvm-project/commit/028e55d2d411f19e193e3d5df589162a317ab5f1
DIFF:
https://github.com/llvm/llvm-project/commit/028e55d2d411f19e193e3d5df589162a317a
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T16:31:38-08:00
New Revision: 2ea8c69eff07c491c7cb14dd46afd30529b89d91
URL:
https://github.com/llvm/llvm-project/commit/2ea8c69eff07c491c7cb14dd46afd30529b89d91
DIFF:
https://github.com/llvm/llvm-project/commit/2ea8c69eff07c491c7cb14dd46afd30529b8
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T16:17:14-08:00
New Revision: 347e1f621355d9b58901f3579fde91783c24ca29
URL:
https://github.com/llvm/llvm-project/commit/347e1f621355d9b58901f3579fde91783c24ca29
DIFF:
https://github.com/llvm/llvm-project/commit/347e1f621355d9b58901f3579fde91783c24
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T15:00:53-08:00
New Revision: 75a95bc80eae0c539b342f2cb19a92a0de02d2e1
URL:
https://github.com/llvm/llvm-project/commit/75a95bc80eae0c539b342f2cb19a92a0de02d2e1
DIFF:
https://github.com/llvm/llvm-project/commit/75a95bc80eae0c539b342f2cb19a92a0de02
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T14:44:31-08:00
New Revision: c3ff9939bf7efeb11da49f100a277b4d8bbeff9f
URL:
https://github.com/llvm/llvm-project/commit/c3ff9939bf7efeb11da49f100a277b4d8bbeff9f
DIFF:
https://github.com/llvm/llvm-project/commit/c3ff9939bf7efeb11da49f100a277b4d8bbe
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T14:16:05-08:00
New Revision: 898d61b3cff5d79870d964c76d82764fef73efbb
URL:
https://github.com/llvm/llvm-project/commit/898d61b3cff5d79870d964c76d82764fef73efbb
DIFF:
https://github.com/llvm/llvm-project/commit/898d61b3cff5d79870d964c76d82764fef73
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T13:28:29-08:00
New Revision: a5c89bb02195a97aa71a406d9864098c764f
URL:
https://github.com/llvm/llvm-project/commit/a5c89bb02195a97aa71a406d9864098c764f
DIFF:
https://github.com/llvm/llvm-project/commit/a5c89bb02195a97aa71a406d9864098c
Author: Duncan P. N. Exon Smith
Date: 2020-12-09T11:51:43-08:00
New Revision: 82789228c65317ceea3fdcc08c573c5ca780021e
URL:
https://github.com/llvm/llvm-project/commit/82789228c65317ceea3fdcc08c573c5ca780021e
DIFF:
https://github.com/llvm/llvm-project/commit/82789228c65317ceea3fdcc08c573c5ca780
Author: Duncan P. N. Exon Smith
Date: 2020-12-08T18:10:53-08:00
New Revision: 2878e965af27ce037378a4f0409e89039108c09f
URL:
https://github.com/llvm/llvm-project/commit/2878e965af27ce037378a4f0409e89039108c09f
DIFF:
https://github.com/llvm/llvm-project/commit/2878e965af27ce037378a4f0409e89039108
Author: Duncan P. N. Exon Smith
Date: 2020-12-08T17:33:19-08:00
New Revision: 5207f19d103dc3e0ec974fa64d2c031d84d497a8
URL:
https://github.com/llvm/llvm-project/commit/5207f19d103dc3e0ec974fa64d2c031d84d497a8
DIFF:
https://github.com/llvm/llvm-project/commit/5207f19d103dc3e0ec974fa64d2c031d84d4
Author: Duncan P. N. Exon Smith
Date: 2020-12-08T13:46:21-08:00
New Revision: b85c6e5bcd1a9de941c318f9a5dc742818752a56
URL:
https://github.com/llvm/llvm-project/commit/b85c6e5bcd1a9de941c318f9a5dc742818752a56
DIFF:
https://github.com/llvm/llvm-project/commit/b85c6e5bcd1a9de941c318f9a5dc74281875
Author: Duncan P. N. Exon Smith
Date: 2020-12-08T12:52:17-08:00
New Revision: 51f3432f4b5217b35dc2694c6e46d6cfc7defad6
URL:
https://github.com/llvm/llvm-project/commit/51f3432f4b5217b35dc2694c6e46d6cfc7defad6
DIFF:
https://github.com/llvm/llvm-project/commit/51f3432f4b5217b35dc2694c6e46d6cfc7de
Author: Duncan P. N. Exon Smith
Date: 2020-12-04T15:10:27-08:00
New Revision: d126943251d0cd77e572bced5ab6c23595acd468
URL:
https://github.com/llvm/llvm-project/commit/d126943251d0cd77e572bced5ab6c23595acd468
DIFF:
https://github.com/llvm/llvm-project/commit/d126943251d0cd77e572bced5ab6c23595ac
Author: Duncan P. N. Exon Smith
Date: 2020-12-04T14:45:59-08:00
New Revision: b4f4fc6872fbe4e296d3270d297a0e4afbda6670
URL:
https://github.com/llvm/llvm-project/commit/b4f4fc6872fbe4e296d3270d297a0e4afbda6670
DIFF:
https://github.com/llvm/llvm-project/commit/b4f4fc6872fbe4e296d3270d297a0e4afbda
Author: Duncan P. N. Exon Smith
Date: 2020-12-04T14:43:22-08:00
New Revision: 9ae0a46f2bbff5c0eb962c5a6225a2b469d1802f
URL:
https://github.com/llvm/llvm-project/commit/9ae0a46f2bbff5c0eb962c5a6225a2b469d1802f
DIFF:
https://github.com/llvm/llvm-project/commit/9ae0a46f2bbff5c0eb962c5a6225a2b469d1
Author: Duncan P. N. Exon Smith
Date: 2020-12-04T14:37:48-08:00
New Revision: 1b023f54b61737552242868bdfc385487f1c3e74
URL:
https://github.com/llvm/llvm-project/commit/1b023f54b61737552242868bdfc385487f1c3e74
DIFF:
https://github.com/llvm/llvm-project/commit/1b023f54b61737552242868bdfc385487f1c
Author: Duncan P. N. Exon Smith
Date: 2020-12-04T12:34:49-08:00
New Revision: d10f9863a5ac1cb681af07719650c44b48f289ce
URL:
https://github.com/llvm/llvm-project/commit/d10f9863a5ac1cb681af07719650c44b48f289ce
DIFF:
https://github.com/llvm/llvm-project/commit/d10f9863a5ac1cb681af07719650c44b48f2
Author: Duncan P. N. Exon Smith
Date: 2020-12-04T11:07:42-08:00
New Revision: 5b267fb7966157e0d79ea85cbc1d07f92f840d3c
URL:
https://github.com/llvm/llvm-project/commit/5b267fb7966157e0d79ea85cbc1d07f92f840d3c
DIFF:
https://github.com/llvm/llvm-project/commit/5b267fb7966157e0d79ea85cbc1d07f92f84
Author: Duncan P. N. Exon Smith
Date: 2020-12-03T18:09:52-08:00
New Revision: e763e032f8bbf5a4da60d099b1df4cd16e44e139
URL:
https://github.com/llvm/llvm-project/commit/e763e032f8bbf5a4da60d099b1df4cd16e44e139
DIFF:
https://github.com/llvm/llvm-project/commit/e763e032f8bbf5a4da60d099b1df4cd16e44
Author: Duncan P. N. Exon Smith
Date: 2020-12-03T16:10:59-08:00
New Revision: 99b823c2eba391877a0fcd6bc5f03f0d9f0077cb
URL:
https://github.com/llvm/llvm-project/commit/99b823c2eba391877a0fcd6bc5f03f0d9f0077cb
DIFF:
https://github.com/llvm/llvm-project/commit/99b823c2eba391877a0fcd6bc5f03f0d9f00
Author: Duncan P. N. Exon Smith
Date: 2020-12-02T17:36:20-08:00
New Revision: b34632201987eed369bb7ef4646f341b901c95b8
URL:
https://github.com/llvm/llvm-project/commit/b34632201987eed369bb7ef4646f341b901c95b8
DIFF:
https://github.com/llvm/llvm-project/commit/b34632201987eed369bb7ef4646f341b901c
Author: Duncan P. N. Exon Smith
Date: 2020-12-02T17:14:27-08:00
New Revision: 3b18a594c7717a328c33b9c1eba675e9f4bd367c
URL:
https://github.com/llvm/llvm-project/commit/3b18a594c7717a328c33b9c1eba675e9f4bd367c
DIFF:
https://github.com/llvm/llvm-project/commit/3b18a594c7717a328c33b9c1eba675e9f4bd
Author: Duncan P. N. Exon Smith
Date: 2020-12-02T16:28:33-08:00
New Revision: dcc4f7f3c4b4442710ae73d6f73cded665426678
URL:
https://github.com/llvm/llvm-project/commit/dcc4f7f3c4b4442710ae73d6f73cded665426678
DIFF:
https://github.com/llvm/llvm-project/commit/dcc4f7f3c4b4442710ae73d6f73cded66542
Author: Duncan P. N. Exon Smith
Date: 2020-12-02T14:07:23-08:00
New Revision: 32c501dd88b62787d3a5ffda7aabcf4650dbe3cd
URL:
https://github.com/llvm/llvm-project/commit/32c501dd88b62787d3a5ffda7aabcf4650dbe3cd
DIFF:
https://github.com/llvm/llvm-project/commit/32c501dd88b62787d3a5ffda7aabcf4650db
Author: Duncan P. N. Exon Smith
Date: 2020-11-30T17:13:03-08:00
New Revision: f85db7f7ba683b2450892fde247311d7a48adbd0
URL:
https://github.com/llvm/llvm-project/commit/f85db7f7ba683b2450892fde247311d7a48adbd0
DIFF:
https://github.com/llvm/llvm-project/commit/f85db7f7ba683b2450892fde247311d7a48a
Author: Duncan P. N. Exon Smith
Date: 2020-11-30T14:50:46-08:00
New Revision: 94f537c6b2bb55c8e058a9989d02ab0d68a0c61a
URL:
https://github.com/llvm/llvm-project/commit/94f537c6b2bb55c8e058a9989d02ab0d68a0c61a
DIFF:
https://github.com/llvm/llvm-project/commit/94f537c6b2bb55c8e058a9989d02ab0d68a0
Author: Duncan P. N. Exon Smith
Date: 2020-11-30T14:50:46-08:00
New Revision: 1b042de5b29af4869a77ecbc632029fba0313dec
URL:
https://github.com/llvm/llvm-project/commit/1b042de5b29af4869a77ecbc632029fba0313dec
DIFF:
https://github.com/llvm/llvm-project/commit/1b042de5b29af4869a77ecbc632029fba031
Author: Duncan P. N. Exon Smith
Date: 2020-11-30T14:04:48-08:00
New Revision: ac40a2d8f16b8a8c68fc811d67f647740e965cb8
URL:
https://github.com/llvm/llvm-project/commit/ac40a2d8f16b8a8c68fc811d67f647740e965cb8
DIFF:
https://github.com/llvm/llvm-project/commit/ac40a2d8f16b8a8c68fc811d67f647740e96
Author: Duncan P. N. Exon Smith
Date: 2020-11-13T17:47:17-05:00
New Revision: cfde3edeae4730aa44642c4835bcfa5a857ea8d4
URL:
https://github.com/llvm/llvm-project/commit/cfde3edeae4730aa44642c4835bcfa5a857ea8d4
DIFF:
https://github.com/llvm/llvm-project/commit/cfde3edeae4730aa44642c4835bcfa5a857e
Author: Duncan P. N. Exon Smith
Date: 2020-11-13T16:23:04-05:00
New Revision: a2f2c2f3a46351bc5478acd290258d318af2cd88
URL:
https://github.com/llvm/llvm-project/commit/a2f2c2f3a46351bc5478acd290258d318af2cd88
DIFF:
https://github.com/llvm/llvm-project/commit/a2f2c2f3a46351bc5478acd290258d318af2
Author: Duncan P. N. Exon Smith
Date: 2020-11-13T14:09:00-05:00
New Revision: b764a62f02e146bed96cf2231bd1db2d9d4fb72c
URL:
https://github.com/llvm/llvm-project/commit/b764a62f02e146bed96cf2231bd1db2d9d4fb72c
DIFF:
https://github.com/llvm/llvm-project/commit/b764a62f02e146bed96cf2231bd1db2d9d4f
Author: Duncan P. N. Exon Smith
Date: 2020-11-13T13:26:37-05:00
New Revision: d87fd096ac3eb27f376c0182ed5e3034ce240861
URL:
https://github.com/llvm/llvm-project/commit/d87fd096ac3eb27f376c0182ed5e3034ce240861
DIFF:
https://github.com/llvm/llvm-project/commit/d87fd096ac3eb27f376c0182ed5e3034ce24
Author: Duncan P. N. Exon Smith
Date: 2020-11-11T17:19:51-05:00
New Revision: 4c55c3b66dea3a1d6058392e1e96e166d318a2ff
URL:
https://github.com/llvm/llvm-project/commit/4c55c3b66dea3a1d6058392e1e96e166d318a2ff
DIFF:
https://github.com/llvm/llvm-project/commit/4c55c3b66dea3a1d6058392e1e96e166d318
Author: Duncan P. N. Exon Smith
Date: 2020-11-11T16:15:06-05:00
New Revision: 4e9af3d47847c68b0ffa8a062ae029702b06214d
URL:
https://github.com/llvm/llvm-project/commit/4e9af3d47847c68b0ffa8a062ae029702b06214d
DIFF:
https://github.com/llvm/llvm-project/commit/4e9af3d47847c68b0ffa8a062ae029702b06
Author: Jan Svoboda
Date: 2020-11-09T18:00:10-05:00
New Revision: dbfa69c5024cfe58b8029a3766ec46c857cddb1e
URL:
https://github.com/llvm/llvm-project/commit/dbfa69c5024cfe58b8029a3766ec46c857cddb1e
DIFF:
https://github.com/llvm/llvm-project/commit/dbfa69c5024cfe58b8029a3766ec46c857cddb1e.diff
L
Author: Duncan P. N. Exon Smith
Date: 2020-11-09T15:45:35-05:00
New Revision: c56ec7bedeb8b90cfef4c3ea8db3addfa34fde68
URL:
https://github.com/llvm/llvm-project/commit/c56ec7bedeb8b90cfef4c3ea8db3addfa34fde68
DIFF:
https://github.com/llvm/llvm-project/commit/c56ec7bedeb8b90cfef4c3ea8db3addfa34f
Author: Duncan P. N. Exon Smith
Date: 2020-11-04T16:19:39-05:00
New Revision: 6e73cfa8363d43689f77b0e4e4c2787ae6ae3fb6
URL:
https://github.com/llvm/llvm-project/commit/6e73cfa8363d43689f77b0e4e4c2787ae6ae3fb6
DIFF:
https://github.com/llvm/llvm-project/commit/6e73cfa8363d43689f77b0e4e4c2787ae6ae
Author: Duncan P. N. Exon Smith
Date: 2020-11-04T14:11:57-05:00
New Revision: 77a9e0a4af5aea3795ed79a0db61ee5b19b837e4
URL:
https://github.com/llvm/llvm-project/commit/77a9e0a4af5aea3795ed79a0db61ee5b19b837e4
DIFF:
https://github.com/llvm/llvm-project/commit/77a9e0a4af5aea3795ed79a0db61ee5b19b8
Author: Duncan P. N. Exon Smith
Date: 2020-11-02T15:55:13-05:00
New Revision: 5cb8d93205463f169ad4dd532829147fed2e38d0
URL:
https://github.com/llvm/llvm-project/commit/5cb8d93205463f169ad4dd532829147fed2e38d0
DIFF:
https://github.com/llvm/llvm-project/commit/5cb8d93205463f169ad4dd532829147fed2e
Author: Duncan P. N. Exon Smith
Date: 2020-11-02T15:11:51-05:00
New Revision: 9f151df17800e1668c32e5314a290ae94c8f2dd3
URL:
https://github.com/llvm/llvm-project/commit/9f151df17800e1668c32e5314a290ae94c8f2dd3
DIFF:
https://github.com/llvm/llvm-project/commit/9f151df17800e1668c32e5314a290ae94c8f
Author: Duncan P. N. Exon Smith
Date: 2020-10-30T16:29:16-04:00
New Revision: 814141f9bd0a64bbedae05773972d140f04f654d
URL:
https://github.com/llvm/llvm-project/commit/814141f9bd0a64bbedae05773972d140f04f654d
DIFF:
https://github.com/llvm/llvm-project/commit/814141f9bd0a64bbedae05773972d140f04f
Author: Duncan P. N. Exon Smith
Date: 2020-10-30T15:06:01-04:00
New Revision: ac49500cd0484e1b2dcf37fa4c0dade6f113c2c9
URL:
https://github.com/llvm/llvm-project/commit/ac49500cd0484e1b2dcf37fa4c0dade6f113c2c9
DIFF:
https://github.com/llvm/llvm-project/commit/ac49500cd0484e1b2dcf37fa4c0dade6f113
Author: Duncan P. N. Exon Smith
Date: 2020-10-30T14:06:55-04:00
New Revision: 940d0a310dca31ae97080b068cef92eadfee6367
URL:
https://github.com/llvm/llvm-project/commit/940d0a310dca31ae97080b068cef92eadfee6367
DIFF:
https://github.com/llvm/llvm-project/commit/940d0a310dca31ae97080b068cef92eadfee
Author: Duncan P. N. Exon Smith
Date: 2020-10-30T14:04:48-04:00
New Revision: 5530fb586f30da9dcb434f6be39198dbf016b866
URL:
https://github.com/llvm/llvm-project/commit/5530fb586f30da9dcb434f6be39198dbf016b866
DIFF:
https://github.com/llvm/llvm-project/commit/5530fb586f30da9dcb434f6be39198dbf016
Author: Duncan P. N. Exon Smith
Date: 2020-10-30T14:01:01-04:00
New Revision: 010238a296e61cbf6f4d7f4383e26cf00c4e4992
URL:
https://github.com/llvm/llvm-project/commit/010238a296e61cbf6f4d7f4383e26cf00c4e4992
DIFF:
https://github.com/llvm/llvm-project/commit/010238a296e61cbf6f4d7f4383e26cf00c4e
Author: Duncan P. N. Exon Smith
Date: 2020-10-30T13:25:46-04:00
New Revision: 84e8257937ec6a332aa0b688f4dce57016516ffd
URL:
https://github.com/llvm/llvm-project/commit/84e8257937ec6a332aa0b688f4dce57016516ffd
DIFF:
https://github.com/llvm/llvm-project/commit/84e8257937ec6a332aa0b688f4dce5701651
Author: Duncan P. N. Exon Smith
Date: 2020-10-28T19:04:22-04:00
New Revision: 946406aebce298725b07097934cb39b1e5bee656
URL:
https://github.com/llvm/llvm-project/commit/946406aebce298725b07097934cb39b1e5bee656
DIFF:
https://github.com/llvm/llvm-project/commit/946406aebce298725b07097934cb39b1e5be
Author: Duncan P. N. Exon Smith
Date: 2020-10-28T16:38:32-04:00
New Revision: 23ed570af1cc165afea1b70a533a4a39d6656501
URL:
https://github.com/llvm/llvm-project/commit/23ed570af1cc165afea1b70a533a4a39d6656501
DIFF:
https://github.com/llvm/llvm-project/commit/23ed570af1cc165afea1b70a533a4a39d665
Author: Duncan P. N. Exon Smith
Date: 2020-10-27T14:55:41-04:00
New Revision: 917acac960d40280ea02ea453e594034b1be1f6b
URL:
https://github.com/llvm/llvm-project/commit/917acac960d40280ea02ea453e594034b1be1f6b
DIFF:
https://github.com/llvm/llvm-project/commit/917acac960d40280ea02ea453e594034b1be
Author: Duncan P. N. Exon Smith
Date: 2020-10-26T21:58:52-04:00
New Revision: f057e6dc5e29751dbba700bc62d8c42c57a502b0
URL:
https://github.com/llvm/llvm-project/commit/f057e6dc5e29751dbba700bc62d8c42c57a502b0
DIFF:
https://github.com/llvm/llvm-project/commit/f057e6dc5e29751dbba700bc62d8c42c57a5
Author: Duncan P. N. Exon Smith
Date: 2020-10-26T20:56:28-04:00
New Revision: aab50af8c18ab2eb2149bb516c8a0993ffc5abb7
URL:
https://github.com/llvm/llvm-project/commit/aab50af8c18ab2eb2149bb516c8a0993ffc5abb7
DIFF:
https://github.com/llvm/llvm-project/commit/aab50af8c18ab2eb2149bb516c8a0993ffc5
Author: Duncan P. N. Exon Smith
Date: 2020-10-26T15:38:13-04:00
New Revision: 22e6b1863e74136908842d71b4f942313d89b273
URL:
https://github.com/llvm/llvm-project/commit/22e6b1863e74136908842d71b4f942313d89b273
DIFF:
https://github.com/llvm/llvm-project/commit/22e6b1863e74136908842d71b4f942313d89
Author: Duncan P. N. Exon Smith
Date: 2020-10-26T14:07:46-04:00
New Revision: 0387015d7549fc2c0cc8c45d3e78114cc4fd153f
URL:
https://github.com/llvm/llvm-project/commit/0387015d7549fc2c0cc8c45d3e78114cc4fd153f
DIFF:
https://github.com/llvm/llvm-project/commit/0387015d7549fc2c0cc8c45d3e78114cc4fd
Author: Duncan P. N. Exon Smith
Date: 2020-10-23T22:10:50-04:00
New Revision: 74910cbbd8d1df824ab1d5e742c50641d0fee907
URL:
https://github.com/llvm/llvm-project/commit/74910cbbd8d1df824ab1d5e742c50641d0fee907
DIFF:
https://github.com/llvm/llvm-project/commit/74910cbbd8d1df824ab1d5e742c50641d0fe
Author: Duncan P. N. Exon Smith
Date: 2020-10-23T21:28:09-04:00
New Revision: 434f3774f629f5896614e9efb4eda82d813402ed
URL:
https://github.com/llvm/llvm-project/commit/434f3774f629f5896614e9efb4eda82d813402ed
DIFF:
https://github.com/llvm/llvm-project/commit/434f3774f629f5896614e9efb4eda82d8134
1 - 100 of 406 matches
Mail list logo