summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-01-11 10:59:00 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-01-11 10:59:00 +0000
commitd55b5fe9920554cebf5976316915bb07165734b4 (patch)
tree94f1efd68239bcd826dae8c111d380ca9382aeec
parent55da404566ce18e13532661494d53819832684bd (diff)
downloadllvm-d55b5fe9920554cebf5976316915bb07165734b4.tar.gz
llvm-d55b5fe9920554cebf5976316915bb07165734b4.tar.bz2
llvm-d55b5fe9920554cebf5976316915bb07165734b4.tar.xz
[PM] Somehow I missed the header guards on this file. Yikes!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199003 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/IR/PassManager.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/IR/PassManager.h b/include/llvm/IR/PassManager.h
index e4a5fec5e7..b85f7f1762 100644
--- a/include/llvm/IR/PassManager.h
+++ b/include/llvm/IR/PassManager.h
@@ -35,6 +35,9 @@
///
//===----------------------------------------------------------------------===//
+#ifndef LLVM_IR_PASS_MANAGER_H
+#define LLVM_IR_PASS_MANAGER_H
+
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/polymorphic_ptr.h"
@@ -818,3 +821,5 @@ createModuleToFunctionPassAdaptor(FunctionPassT Pass) {
}
}
+
+#endif