We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79adc2b commit 32738ebCopy full SHA for 32738eb
flang/lib/Lower/Bridge.cpp
@@ -3290,9 +3290,8 @@ class FirConverter : public Fortran::lower::AbstractConverter {
3290
// TODO: Don't use default value, instead get the following
3291
// info from the directive
3292
uint32_t isWrite{0}, localityHint{3}, isData{1};
3293
- builder->create<fir::PrefetchOp>(genLocation(dir.source),
3294
- memRef, isWrite, localityHint,
3295
- isData);
+ fir::PrefetchOp::create(*builder, genLocation(dir.source),
+ memRef, isWrite, localityHint, isData);
3296
}
3297
},
3298
[&](const auto &) {}},
0 commit comments