merged volatile memory barriers
[cacao.git] / src / vm / jit / stubs.cpp
index bc458af5c1f38272584147b2f893620a068a9ee6..7ab8382d2b99efd66e5d735a4e3ac5f1965df4df 100644 (file)
@@ -33,7 +33,7 @@
 
 #include "mm/dumpmemory.hpp"
 
-#include "vm/method.h"
+#include "vm/method.hpp"
 #include "vm/options.h"
 
 #include "vm/jit/abi.h"
@@ -42,7 +42,7 @@
 #include "vm/jit/disass.h"
 #include "vm/jit/emit-common.hpp"
 #include "vm/jit/jit.hpp"
-#include "vm/jit/show.h"
+#include "vm/jit/show.hpp"
 #include "vm/jit/stubs.hpp"
 
 
@@ -412,18 +412,6 @@ void NativeStub::remove(void* stub)
 }
 
 
-// Legacy C interface.
-
-extern "C" {
-       void*     CompilerStub_generate(methodinfo* m) { return CompilerStub::generate(m); }
-       void      CompilerStub_remove(void* stub) { CompilerStub::remove(stub); }
-
-       void      BuiltinStub_generate(methodinfo* m, builtintable_entry* bte) { BuiltinStub::generate(m, bte); }
-
-       void      NativeStub_remove(void* stub) { NativeStub::remove(stub); }
-}
-
-
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where