diff options
| author | 2018-04-06 14:26:03 +0000 | |
|---|---|---|
| committer | 2018-04-06 14:26:03 +0000 | |
| commit | bdabc2f19ffb9e20600dad6e8a300842a7bda50e (patch) | |
| tree | c50e7b2e5449b074651bb82a58517a8ebc4a8cf7 /gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp | |
| parent | Print a 'p' flag for file descriptors that were opened after pledge(2). (diff) | |
| download | wireguard-openbsd-bdabc2f19ffb9e20600dad6e8a300842a7bda50e.tar.xz wireguard-openbsd-bdabc2f19ffb9e20600dad6e8a300842a7bda50e.zip | |
Import LLVM 6.0.1 release including clang, lld and lldb.
"where is the kaboom?" deraadt@
Diffstat (limited to 'gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp')
| -rw-r--r-- | gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp | 13 |
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); } } - |
