https://github.com/Renaud-K closed
https://github.com/llvm/llvm-project/pull/107126
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Renaud-K wrote:
I have been looking into this but long story short, but I am little pressed by
time and was not planning on spending too much time on this. For the need that
we have, it should be ok.
https://github.com/llvm/llvm-project/pull/107126
https://github.com/Renaud-K updated
https://github.com/llvm/llvm-project/pull/107126
>From 8a1c51bdd290fc47cac359646aeb01623574231f Mon Sep 17 00:00:00 2001
From: Renaud-K
Date: Tue, 3 Sep 2024 09:34:09 -0700
Subject: [PATCH 1/4] Allow disabling of types from the command line
---
clang/includ
https://github.com/Renaud-K updated
https://github.com/llvm/llvm-project/pull/107126
>From 8a1c51bdd290fc47cac359646aeb01623574231f Mon Sep 17 00:00:00 2001
From: Renaud-K
Date: Tue, 3 Sep 2024 09:34:09 -0700
Subject: [PATCH 1/3] Allow disabling of types from the command line
---
clang/includ
Renaud-K wrote:
The end goal is testing for issues that this PR would expose and that I am
planning on filing next.
Every bit-width? (5,6,7,9,11,12,13,14,15) I don't think so.
It does not matter what gfortran does. It is not a feature, it is hidden for
testing purposes.
https://github.com/
https://github.com/Renaud-K updated
https://github.com/llvm/llvm-project/pull/107126
>From 8a1c51bdd290fc47cac359646aeb01623574231f Mon Sep 17 00:00:00 2001
From: Renaud-K
Date: Tue, 3 Sep 2024 09:34:09 -0700
Subject: [PATCH 1/2] Allow disabling of types from the command line
---
clang/includ
https://github.com/Renaud-K created
https://github.com/llvm/llvm-project/pull/107126
I would to add hidden options to disable types through the
`TargetCharacteristics`. I am seeing issues when I do this programmatically and
would like, for anyone, to have the ability to reproduce them for deve
https://github.com/Renaud-K closed
https://github.com/llvm/llvm-project/pull/72160
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/Renaud-K created
https://github.com/llvm/llvm-project/pull/72160
Fixing fir::unwrapSeqOrBoxedSeqType so it also works with the fir::ClassType
>From af6200e4466066f92a67d69e6f49c8baa28bf62f Mon Sep 17 00:00:00 2001
From: Renaud-K
Date: Wed, 8 Mar 2023 18:39:40 -0800
Subject:
https://github.com/Renaud-K approved this pull request.
https://github.com/llvm/llvm-project/pull/68727
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -406,7 +406,7 @@ AliasAnalysis::Source AliasAnalysis::getSource(mlir::Value
v) {
attributes.set(Attribute::Pointer);
}
- if (type == SourceKind::Global)
+ if (type == SourceKind::Global || type == SourceKind::Direct)
Renaud-K wrote:
I am sti
@@ -406,7 +406,7 @@ AliasAnalysis::Source AliasAnalysis::getSource(mlir::Value
v) {
attributes.set(Attribute::Pointer);
}
- if (type == SourceKind::Global)
+ if (type == SourceKind::Global || type == SourceKind::Direct)
Renaud-K wrote:
Would it
@@ -406,7 +406,7 @@ AliasAnalysis::Source AliasAnalysis::getSource(mlir::Value
v) {
attributes.set(Attribute::Pointer);
}
- if (type == SourceKind::Global)
+ if (type == SourceKind::Global || type == SourceKind::Direct)
Renaud-K wrote:
No, they
@@ -406,7 +406,7 @@ AliasAnalysis::Source AliasAnalysis::getSource(mlir::Value
v) {
attributes.set(Attribute::Pointer);
}
- if (type == SourceKind::Global)
+ if (type == SourceKind::Global || type == SourceKind::Direct)
Renaud-K wrote:
We also
14 matches
Mail list logo