Add missing include guards and missing #include, found by modules build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207298 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Richard Smith 2014-04-26 00:53:26 +00:00
parent 31e75e673c
commit f3a9eb107c

View File

@ -12,8 +12,12 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_IR_LEAKSCONTEXT_H
#define LLVM_IR_LEAKSCONTEXT_H
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/IR/Value.h"
#include "llvm/Support/raw_ostream.h"
namespace llvm {
@ -90,3 +94,5 @@ private:
};
}
#endif // LLVM_IR_LEAKSCONTEXT_H