1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

DFAEmitter.h - remove unnecessary headers. NFC.

Reduce StringRef.h include to forward declaration and add implicit SmallVector.h and <map> include dependencies.
This commit is contained in:
Simon Pilgrim 2020-05-08 14:53:10 +01:00
parent 06428d8712
commit a789997cb1

View File

@ -17,16 +17,16 @@
#ifndef LLVM_UTILS_TABLEGEN_DFAEMITTER_H
#define LLVM_UTILS_TABLEGEN_DFAEMITTER_H
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/UniqueVector.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/TableGen/Record.h"
#include <map>
#include <set>
#include <unordered_map>
namespace llvm {
class raw_ostream;
class StringRef;
/// Construct a deterministic finite state automaton from possible
/// nondeterministic state and transition data.
///