1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

[PM] Somehow I missed the header guards on this file. Yikes!

llvm-svn: 199003
This commit is contained in:
Chandler Carruth 2014-01-11 10:59:00 +00:00
parent fbff75f61d
commit 53ce9f07be

View File

@ -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