[vmkit-commits] [vmkit] r54727 - /vmkit/trunk/include/mvm/JIT.h

Nicolas Geoffray nicolas.geoffray at lip6.fr
Wed Aug 13 02:27:27 PDT 2008


Author: geoffray
Date: Wed Aug 13 04:27:20 2008
New Revision: 54727

URL: http://llvm.org/viewvc/llvm-project?rev=54727&view=rev
Log:
Oops, forgot to commit the JITInfo class.


Modified:
    vmkit/trunk/include/mvm/JIT.h

Modified: vmkit/trunk/include/mvm/JIT.h
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/include/mvm/JIT.h?rev=54727&r1=54726&r2=54727&view=diff

==============================================================================
--- vmkit/trunk/include/mvm/JIT.h (original)
+++ vmkit/trunk/include/mvm/JIT.h Wed Aug 13 04:27:20 2008
@@ -30,6 +30,14 @@
 
 namespace mvm {
 
+/// JITInfo - This class can be derived from to hold private JIT-specific
+/// information. Objects of type are accessed/created with
+/// <Class>::getInfo and destroyed when the <Class> object is destroyed.
+struct JITInfo {
+  virtual ~JITInfo() {}
+};
+
+
 namespace jit {
 
 const double MaxDouble = +INFINITY; //1.0 / 0.0;





More information about the vmkit-commits mailing list