Displaying 3 results from an estimated 3 matches for "addtoaccessgrouplist".
2020 Jun 24
6
[RFC] Compiled regression tests.
Am Mi., 24. Juni 2020 um 10:12 Uhr schrieb David Blaikie <dblaikie at gmail.com>:
> > As mentioned in the Differential, generating the tests automatically
> > will lose information about what actually is intended to be tested,
>
> Agreed - and I didn't mean to suggest tests should be automatically
> generated. I work pretty hard in code reviews to encourage tests to
2020 Jul 01
6
[RFC] Compiled regression tests.
...a/llvm/lib/Analysis/VectorUtils.cpp
> +++ b/llvm/lib/Analysis/VectorUtils.cpp
> @@ -642,8 +642,8 @@ MDNode *llvm::uniteAccessGroups(MDNode
> *AccGroups1, MDNode *AccGroups2) {
> return AccGroups1;
>
> SmallSetVector<Metadata *, 4> Union;
> - addToAccessGroupList(Union, AccGroups1);
> addToAccessGroupList(Union, AccGroups2);
> + addToAccessGroupList(Union, AccGroups1);
>
> if (Union.size() == 0)
> return nullptr;
>
> This changes the order of access groups when merging them.
> Same background: Access group...
2020 Jul 01
5
[RFC] Compiled regression tests.
...n-semantic change in LLVM:
--- a/llvm/lib/Analysis/VectorUtils.cpp
+++ b/llvm/lib/Analysis/VectorUtils.cpp
@@ -642,8 +642,8 @@ MDNode *llvm::uniteAccessGroups(MDNode *AccGroups1, MDNode *AccGroups2) {
return AccGroups1;
SmallSetVector<Metadata *, 4> Union;
- addToAccessGroupList(Union, AccGroups1);
addToAccessGroupList(Union, AccGroups2);
+ addToAccessGroupList(Union, AccGroups1);
if (Union.size() == 0)
return nullptr;
This changes the order of access groups when merging them.
Same background: Access groups are used to mark that a side-effect...