llvm-mca: Add missing includes

Move the header include in the primary source file to the top to
validate that it doesn't depend on any other inclusions.

llvm-svn: 331897
This commit is contained in:
David Blaikie 2018-05-09 17:28:10 +00:00
parent 6e28675e5b
commit 08c63c1dfe
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#include "Dispatch.h"
#include "RetireControlUnit.h"
#include "Dispatch.h"
#include "llvm/MC/MCSchedule.h"
#include "llvm/Support/Debug.h"

View File

@ -15,6 +15,10 @@
#ifndef LLVM_TOOLS_LLVM_MCA_RETIRE_CONTROL_UNIT_H
#define LLVM_TOOLS_LLVM_MCA_RETIRE_CONTROL_UNIT_H
#include <algorithm>
#include <vector>
#include "Instruction.h"
#include "llvm/MC/MCSchedule.h"
namespace mca {