Skip to content

Commit 014a8b8

Browse files
committed
leave out initialization
1 parent cd70987 commit 014a8b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Dialect/OpenACC/Transforms/LegalizeDataValues.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ class LegalizeDataValuesInRegion
165165
bool replaceHostVsDevice = this->hostToDevice.getValue();
166166

167167
// Initialize dominance info
168-
DominanceInfo domInfo(funcOp);
169-
PostDominanceInfo postDomInfo(funcOp);
168+
DominanceInfo domInfo;
169+
PostDominanceInfo postDomInfo;
170170
bool computedDomInfo = false;
171171

172172
funcOp.walk([&](Operation *op) {

0 commit comments

Comments
 (0)