Move standard library inclusions to after internal inclusions.
llvm-svn: 332124
diff --git a/llvm/tools/llvm-mca/RetireControlUnit.h b/llvm/tools/llvm-mca/RetireControlUnit.h
index f9efed7..9f03633 100644
--- a/llvm/tools/llvm-mca/RetireControlUnit.h
+++ b/llvm/tools/llvm-mca/RetireControlUnit.h
@@ -15,12 +15,12 @@
#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"
+#include <algorithm>
+#include <vector>
+
namespace mca {
class DispatchUnit;