[llvm-commits] [vmkit] r51343 - /vmkit/trunk/lib/JnJVM/VMCore/JnjvmModule.h
Nicolas Geoffray
nicolas.geoffray at lip6.fr
Tue May 20 13:54:51 PDT 2008
Author: geoffray
Date: Tue May 20 15:54:51 2008
New Revision: 51343
URL: http://llvm.org/viewvc/llvm-project?rev=51343&view=rev
Log:
Cleanup includes and set the macro header.
Modified:
vmkit/trunk/lib/JnJVM/VMCore/JnjvmModule.h
Modified: vmkit/trunk/lib/JnJVM/VMCore/JnjvmModule.h
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/JnJVM/VMCore/JnjvmModule.h?rev=51343&r1=51342&r2=51343&view=diff
==============================================================================
--- vmkit/trunk/lib/JnJVM/VMCore/JnjvmModule.h (original)
+++ vmkit/trunk/lib/JnJVM/VMCore/JnjvmModule.h Tue May 20 15:54:51 2008
@@ -7,9 +7,10 @@
//
//===----------------------------------------------------------------------===//
-#include <map>
+#ifndef JNJVM_MODULE_H
+#define JNJVM_MODULE_H
-#include "JavaTypes.h"
+#include <map>
#include "llvm/Constant.h"
#include "llvm/DerivedTypes.h"
@@ -38,7 +39,7 @@
llvm::ConstantInt* sizeInBytesConstant;
static void initialise();
- static LLVMAssessorInfo AssessorInfo[NUM_ASSESSORS];
+ static LLVMAssessorInfo AssessorInfo[];
};
@@ -366,3 +367,5 @@
};
}
+
+#endif
More information about the llvm-commits
mailing list