Home
last modified time | relevance | path

Searched refs:sequenceType (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/flang/test/Semantics/
H A Dresolve31.f9076 type :: sequenceType type
79 end type sequenceType
88 type(sequenceType) :: testField2
/llvm-project-15.0.7/flang/lib/Lower/
H A DConvertVariable.cpp268 fir::SequenceType sequenceType; in genDefaultInitializerValue() local
270 sequenceType = ty; in genDefaultInitializerValue()
338 if (sequenceType) { in genDefaultInitializerValue()
341 auto arrayInitialValue = builder.create<fir::UndefOp>(loc, sequenceType); in genDefaultInitializerValue()
343 for (int64_t extent : sequenceType.getShape()) { in genDefaultInitializerValue()
351 loc, sequenceType, arrayInitialValue, initialValue, in genDefaultInitializerValue()
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DFIRBuilder.cpp1032 if (auto sequenceType = lFieldTy.dyn_cast<fir::SequenceType>()) { in genComponentByComponentAssignment() local
1041 for (auto extent : llvm::reverse(sequenceType.getShape())) { in genComponentByComponentAssignment()
1052 auto elementRefType = builder.getRefType(sequenceType.getEleTy()); in genComponentByComponentAssignment()