1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-20 11:32:33 +00:00

Give MC/MCDisassembler/Disassembler.h a header guard.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130096 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sebastian Redl 2011-04-24 15:46:56 +00:00
parent 6796e4fc88
commit 69ffd7ad14

@ -13,6 +13,10 @@
// syntax.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_MC_DISASSEMBLER_H
#define LLVM_MC_DISASSEMBLER_H
#include "llvm-c/Disassembler.h"
#include <string>
#include "llvm/ADT/OwningPtr.h"
@ -88,3 +92,5 @@ public:
};
} // namespace llvm
#endif