ScheduleDFS.h - Replace ArrayRef.h include with forward declaration. NFC.

We have no need to include the entire header.
This commit is contained in:
Simon Pilgrim 2020-04-15 22:32:17 +01:00
parent 0ca77adf3f
commit 7fba79be09
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,6 @@
#ifndef LLVM_CODEGEN_SCHEDULEDFS_H #ifndef LLVM_CODEGEN_SCHEDULEDFS_H
#define LLVM_CODEGEN_SCHEDULEDFS_H #define LLVM_CODEGEN_SCHEDULEDFS_H
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/SmallVector.h"
#include "llvm/CodeGen/ScheduleDAG.h" #include "llvm/CodeGen/ScheduleDAG.h"
#include <cassert> #include <cassert>
@ -22,6 +21,7 @@
namespace llvm { namespace llvm {
template <typename T> class ArrayRef;
class raw_ostream; class raw_ostream;
/// Represent the ILP of the subDAG rooted at a DAG node. /// Represent the ILP of the subDAG rooted at a DAG node.