summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp')
-rw-r--r--gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp b/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
index d5bc4e537c3..a4ab7d3a578 100644
--- a/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
+++ b/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
@@ -1,4 +1,4 @@
-//===-- MipsMCInstLower.cpp - Convert Mips MachineInstr to MCInst ---------===//
+//===- MipsMCInstLower.cpp - Convert Mips MachineInstr to MCInst ----------===//
//
// The LLVM Compiler Infrastructure
//
@@ -11,18 +11,18 @@
// MCInst records.
//
//===----------------------------------------------------------------------===//
+
#include "MipsMCInstLower.h"
#include "MCTargetDesc/MipsBaseInfo.h"
+#include "MCTargetDesc/MipsMCExpr.h"
#include "MipsAsmPrinter.h"
-#include "MipsInstrInfo.h"
-#include "llvm/CodeGen/MachineFunction.h"
+#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/MachineOperand.h"
-#include "llvm/IR/Mangler.h"
-#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCInst.h"
-#include "llvm/MC/MCStreamer.h"
+#include "llvm/Support/ErrorHandling.h"
+#include <cassert>
using namespace llvm;
@@ -278,4 +278,3 @@ void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
OutMI.addOperand(MCOp);
}
}
-