MC: Add some missing include guards

Patch by Daniel Reynaud!

llvm-svn: 199523
This commit is contained in:
Justin Bogner 2014-01-17 22:39:45 +00:00
parent 59d26d2e67
commit 2b164bd98d
1 changed files with 6 additions and 1 deletions

View File

@ -12,6 +12,9 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_MC_MCINSTRANALYSIS_H
#define LLVM_MC_MCINSTRANALYSIS_H
#include "llvm/MC/MCInst.h"
#include "llvm/MC/MCInstrDesc.h"
#include "llvm/MC/MCInstrInfo.h"
@ -63,4 +66,6 @@ public:
uint64_t &Target) const;
};
}
} // End llvm namespace
#endif