Skip to content

Commit

Permalink
[DRFScopedNoAliasAA] Fix a compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
neboat committed Oct 18, 2023
1 parent ff14f3a commit 3dd78f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions llvm/lib/Transforms/Tapir/DRFScopedNoAliasAA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class DRFScopedNoAliasImpl {
public:
DRFScopedNoAliasImpl(Function &F, TaskInfo &TI, AliasAnalysis &AA,
LoopInfo *LI)
: F(F), TI(TI), AA(AA), LI(LI) {
: F(F), TI(TI), LI(LI) {
TI.evaluateParallelState<MaybeParallelTasks>(MPTasks);
}

Expand All @@ -62,7 +62,6 @@ class DRFScopedNoAliasImpl {

Function &F;
TaskInfo &TI;
AliasAnalysis &AA;
LoopInfo *LI;

MaybeParallelTasks MPTasks;
Expand Down

0 comments on commit 3dd78f6

Please sign in to comment.