//===- ValueRange.cpp - Indexed Value-Iterators Range Classes -------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "mlir/IR/ValueRange.h" #include "mlir/IR/TypeRange.h" usingnamespacemlir; //===----------------------------------------------------------------------===// // TypeRangeRange TypeRangeRange OperandRangeRange::getTypes() const { … } TypeRangeRange OperandRangeRange::getType() const { … } //===----------------------------------------------------------------------===// // OperandRange OperandRange::type_range OperandRange::getTypes() const { … } OperandRange::type_range OperandRange::getType() const { … } //===----------------------------------------------------------------------===// // ResultRange ResultRange::type_range ResultRange::getTypes() const { … } ResultRange::type_range ResultRange::getType() const { … } //===----------------------------------------------------------------------===// // ValueRange ValueRange::type_range ValueRange::getTypes() const { … } ValueRange::type_range ValueRange::getType() const { … }