diff options
| author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-03 23:39:06 +0000 |
|---|---|---|
| committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-02-03 23:39:06 +0000 |
| commit | 06869c04f33548b83969ce755541a4402f9f1bfe (patch) | |
| tree | c32164879ed7424a3cccdd5f509d4bdbe0397eb7 /llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp | |
| parent | e894b4dc59439ed8c4a6acd6e2195fb5be471ae8 (diff) | |
| download | bcm5719-llvm-06869c04f33548b83969ce755541a4402f9f1bfe.tar.gz bcm5719-llvm-06869c04f33548b83969ce755541a4402f9f1bfe.zip | |
[SystemZ] Fix some Include What You Use warnings; other minor fixes (NFC).
This is preparation to reduce MCExpr.h dependencies.
llvm-svn: 294068
Diffstat (limited to 'llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp')
| -rw-r--r-- | llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp b/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp index 1207c7b327e..6cd12e13e22 100644 --- a/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp +++ b/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp @@ -1,4 +1,4 @@ -//===-- SystemZInstPrinter.cpp - Convert SystemZ MCInst to assembly syntax ===// +//===- SystemZInstPrinter.cpp - Convert SystemZ MCInst to assembly syntax -===// // // The LLVM Compiler Infrastructure // @@ -10,10 +10,13 @@ #include "SystemZInstPrinter.h" #include "llvm/MC/MCExpr.h" #include "llvm/MC/MCInst.h" -#include "llvm/MC/MCInstrInfo.h" #include "llvm/MC/MCSymbol.h" +#include "llvm/Support/Casting.h" #include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" +#include <cassert> +#include <cstdint> using namespace llvm; |

