Move AffineMap.h/IntegerSet.h from Attributes.h to AttributeDetail.h where they belong.

PiperOrigin-RevId: 218806426
This commit is contained in:
River Riddle 2018-10-25 22:39:14 -07:00 committed by jpienaar
parent ea65c695b9
commit 6e6e40ae79
4 changed files with 8 additions and 5 deletions

View File

@ -18,16 +18,15 @@
#ifndef MLIR_IR_ATTRIBUTES_H #ifndef MLIR_IR_ATTRIBUTES_H
#define MLIR_IR_ATTRIBUTES_H #define MLIR_IR_ATTRIBUTES_H
#include "mlir/IR/AffineMap.h"
#include "mlir/IR/IntegerSet.h"
#include "mlir/Support/LLVM.h" #include "mlir/Support/LLVM.h"
#include "llvm/ADT/APFloat.h" #include "llvm/ADT/APFloat.h"
#include "llvm/Support/TrailingObjects.h" #include "llvm/ADT/DenseMapInfo.h"
namespace mlir { namespace mlir {
class AffineMap;
class Function; class Function;
class FunctionType; class FunctionType;
class IntegerSet;
class MLIRContext; class MLIRContext;
class Type; class Type;
class VectorOrTensorType; class VectorOrTensorType;

View File

@ -23,6 +23,7 @@
#ifndef MLIR_IR_BUILTINOPS_H #ifndef MLIR_IR_BUILTINOPS_H
#define MLIR_IR_BUILTINOPS_H #define MLIR_IR_BUILTINOPS_H
#include "mlir/IR/AffineMap.h"
#include "mlir/IR/Attributes.h" #include "mlir/IR/Attributes.h"
#include "mlir/IR/Dialect.h" #include "mlir/IR/Dialect.h"
#include "mlir/IR/OpDefinition.h" #include "mlir/IR/OpDefinition.h"

View File

@ -22,11 +22,11 @@
#include "mlir/Analysis/AffineStructures.h" #include "mlir/Analysis/AffineStructures.h"
#include "mlir/Analysis/AffineAnalysis.h" #include "mlir/Analysis/AffineAnalysis.h"
#include "mlir/IR/AffineExprVisitor.h" #include "mlir/IR/AffineExprVisitor.h"
#include "mlir/IR/AffineMap.h"
#include "mlir/IR/BuiltinOps.h" #include "mlir/IR/BuiltinOps.h"
#include "mlir/IR/IntegerSet.h" #include "mlir/IR/IntegerSet.h"
#include "mlir/IR/MLValue.h" #include "mlir/IR/MLValue.h"
#include "mlir/Support/MathExtras.h" #include "mlir/Support/MathExtras.h"
#include "third_party/llvm/llvm/projects/google-mlir/include/mlir/Analysis/AffineStructures.h"
#include "llvm/ADT/DenseSet.h" #include "llvm/ADT/DenseSet.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h" #include "llvm/Support/raw_ostream.h"

View File

@ -22,8 +22,11 @@
#ifndef ATTRIBUTEDETAIL_H_ #ifndef ATTRIBUTEDETAIL_H_
#define ATTRIBUTEDETAIL_H_ #define ATTRIBUTEDETAIL_H_
#include "mlir/IR/AffineMap.h"
#include "mlir/IR/Attributes.h" #include "mlir/IR/Attributes.h"
#include "mlir/IR/IntegerSet.h"
#include "mlir/IR/MLIRContext.h" #include "mlir/IR/MLIRContext.h"
#include "llvm/Support/TrailingObjects.h"
namespace mlir { namespace mlir {
namespace detail { namespace detail {