MC: Add some missing include guards

Patch by Daniel Reynaud!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199523 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Justin Bogner 2014-01-17 22:39:45 +00:00
parent dbee8c1a3f
commit 01d9f5972a

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