forked from OSchip/llvm-project
MC: Add some missing include guards
Patch by Daniel Reynaud! llvm-svn: 199523
This commit is contained in:
parent
59d26d2e67
commit
2b164bd98d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue