You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by gs...@apache.org on 2007/01/24 12:19:56 UTC

svn commit: r499360 - in /harmony/enhanced/drlvm/trunk/vm/vmcore/include: compile.h environment.h

Author: gshimansky
Date: Wed Jan 24 03:19:54 2007
New Revision: 499360

URL: http://svn.apache.org/viewvc?view=rev&rev=499360
Log:
Some compilation fixes after HARMONY-2802 was committed by Nadya


Modified:
    harmony/enhanced/drlvm/trunk/vm/vmcore/include/compile.h
    harmony/enhanced/drlvm/trunk/vm/vmcore/include/environment.h

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/include/compile.h
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/include/compile.h?view=diff&rev=499360&r1=499359&r2=499360
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/include/compile.h (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/include/compile.h Wed Jan 24 03:19:54 2007
@@ -36,7 +36,7 @@
  * The given method's signature describes what arguments were passed.
  */
  
-void compile_protect_arguments(Method_Handle method, GcFrame* gc).
+void compile_protect_arguments(Method_Handle method, GcFrame* gc);
 
 /** 
  * Code has been generated by writing it to memory.
@@ -95,7 +95,7 @@
  * Create a <code>LIL</code> stub for <code>PINVOKE</code> interfacing.
  */
 
-NativeCodePtr compile_create_lil_pinvoke_stub(Method_Handle method, void* func, NativeStubOverride nso)</code>;
+NativeCodePtr compile_create_lil_pinvoke_stub(Method_Handle method, void* func, NativeStubOverride nso);
 
 /**
  * Support for stub override code sequences. 

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/include/environment.h
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/include/environment.h?view=diff&rev=499360&r1=499359&r2=499360
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/include/environment.h (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/include/environment.h Wed Jan 24 03:19:54 2007
@@ -282,7 +282,6 @@
      * Load a class via bootstrap classloader.
      */
 
-=======
     int isVmInitializing() {
         return vm_state == VM_INITIALIZING;
     }