summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2014-04-26 00:53:26 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2014-04-26 00:53:26 +0000
commitf3a9eb107c079a407962b34ebe5232a41dbf8146 (patch)
treecfff2cbd9d134613e2adeac2b2ae938dbf3a8b73 /lib
parent31e75e673c530c26a74d10013cad2fcb6b0c335c (diff)
downloadllvm-f3a9eb107c079a407962b34ebe5232a41dbf8146.tar.gz
llvm-f3a9eb107c079a407962b34ebe5232a41dbf8146.tar.bz2
llvm-f3a9eb107c079a407962b34ebe5232a41dbf8146.tar.xz
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
Diffstat (limited to 'lib')
-rw-r--r--lib/IR/LeaksContext.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/IR/LeaksContext.h b/lib/IR/LeaksContext.h
index 5038dc9d6d..ea0d275253 100644
--- a/lib/IR/LeaksContext.h
+++ b/lib/IR/LeaksContext.h
@@ -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