Browse Source

* ifdef jvm -> ifdef cpujvm

git-svn-id: branches/jvmbackend@19829 -
Jonas Maebe 13 years ago
parent
commit
676ca4c891
2 changed files with 4 additions and 4 deletions
  1. 3 3
      rtl/inc/generic.inc
  2. 1 1
      rtl/inc/real2str.inc

+ 3 - 3
rtl/inc/generic.inc

@@ -1140,7 +1140,7 @@ end;
 
 {$endif ndef FPC_SYSTEM_HAS_FPC_PCHAR_TO_SHORTSTR}
 
-{$ifndef JVM}
+{$ifndef cpujvm}
 
 {$ifndef FPC_STRTOSHORTSTRINGPROC}
 
@@ -1163,7 +1163,7 @@ function strpas(p:pchar):shortstring;{$ifdef SYSTEMINLINE}inline;{$endif}
 {$endif FPC_STRTOSHORTSTRINGPROC}
   end;
 
-{$endif not JVM}
+{$endif not cpujvm}
 
 {$ifndef FPC_SYSTEM_HAS_FPC_CHARARRAY_TO_SHORTSTR}
 
@@ -1781,7 +1781,7 @@ function align(addr : PtrUInt;alignment : PtrUInt) : PtrUInt;{$ifdef SYSTEMINLIN
   end;
 
 
-{$ifndef JVM}
+{$ifndef cpujvm}
 function align(addr : Pointer;alignment : PtrUInt) : Pointer;{$ifdef SYSTEMINLINE}inline;{$endif}
   var
     tmp: PtrUInt;

+ 1 - 1
rtl/inc/real2str.inc

@@ -64,7 +64,7 @@ type
   TIntPartStack = array[1..maxDigits+1] of valReal;
 
 var
-{$ifdef jvm}
+{$ifdef cpujvm}
   doublebits: int64;
 {$endif}
   roundCorr, corrVal, factor : valReal;