[AVR] Add missing #includes

A previous change seems to have remove #includes from header files. This
fixes the build.

llvm-svn: 294427
This commit is contained in:
Dylan McKay 2017-02-08 08:52:46 +00:00
parent 2af523f20c
commit 2e35987dc8
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#include "AVRELFStreamer.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/MC/SubtargetFeature.h"
#include "llvm/Support/ELF.h"
#include "llvm/Support/FormattedStream.h"

View File

@ -25,6 +25,7 @@
#include "llvm/MC/MCInstrInfo.h"
#include "llvm/MC/MCRegisterInfo.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/raw_ostream.h"
#define DEBUG_TYPE "mccodeemitter"