MC: Add some missing include guards
authorJustin Bogner <mail@justinbogner.com>
Fri, 17 Jan 2014 22:39:45 +0000 (22:39 +0000)
committerJustin Bogner <mail@justinbogner.com>
Fri, 17 Jan 2014 22:39:45 +0000 (22:39 +0000)
Patch by Daniel Reynaud!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199523 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCInstrAnalysis.h

index 17bfd1582ae59e32c536183859e2f87d3bc05dea..e921f768ac45ff1500593ed828a32499ed8a55d0 100644 (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