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

Chandler Carruth chandlerc at gmail.com
Sat Jan 11 02:59:00 PST 2014


Author: chandlerc
Date: Sat Jan 11 04:59:00 2014
New Revision: 199003

URL: http://llvm.org/viewvc/llvm-project?rev=199003&view=rev
Log:
[PM] Somehow I missed the header guards on this file. Yikes!

Modified:
    llvm/trunk/include/llvm/IR/PassManager.h

Modified: llvm/trunk/include/llvm/IR/PassManager.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/PassManager.h?rev=199003&r1=199002&r2=199003&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/PassManager.h (original)
+++ llvm/trunk/include/llvm/IR/PassManager.h Sat Jan 11 04:59:00 2014
@@ -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(Functi
 }
 
 }
+
+#endif





More information about the llvm-commits mailing list