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.h | |
| 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.h')
| -rw-r--r-- | llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h b/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h index 6336f5ee0ef..d65c661545e 100644 --- a/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h +++ b/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h @@ -15,8 +15,10 @@ #define LLVM_LIB_TARGET_SYSTEMZ_INSTPRINTER_SYSTEMZINSTPRINTER_H #include "llvm/MC/MCInstPrinter.h" +#include <cstdint> namespace llvm { + class MCOperand; class SystemZInstPrinter : public MCInstPrinter { @@ -70,6 +72,7 @@ private: // This forms part of the instruction name rather than the operand list. void printCond4Operand(const MCInst *MI, int OpNum, raw_ostream &O); }; + } // end namespace llvm -#endif +#endif // LLVM_LIB_TARGET_SYSTEMZ_INSTPRINTER_SYSTEMZINSTPRINTER_H |

