소스 검색

Some minor mods

ceriel 33 년 전
부모
커밋
3936acad08
3개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 2
      lang/cem/libcc.ansi/math/frexp.e
  2. 1 1
      lang/cem/libcc.ansi/math/isnan.c
  3. 0 2
      lang/cem/libcc.ansi/math/modf.e

+ 0 - 2
lang/cem/libcc.ansi/math/frexp.e

@@ -6,7 +6,6 @@
 /* $Header$ */
 
  mes 2,_EM_WSIZE,_EM_PSIZE
-#ifndef NOFLOAT
  exp $frexp
  pro $frexp,0
  lal 0
@@ -17,4 +16,3 @@
  sti _EM_WSIZE
  ret _EM_DSIZE
  end
-#endif

+ 1 - 1
lang/cem/libcc.ansi/math/isnan.c

@@ -1,6 +1,6 @@
 __IsNan(double d)
 {
-#if defined(vax) || defined(pdp)
+#if defined(__vax) || defined(__pdp)
 #else
 	float f = d;
 

+ 0 - 2
lang/cem/libcc.ansi/math/modf.e

@@ -6,7 +6,6 @@
 /* $Header$ */
 
  mes 2,_EM_WSIZE,_EM_PSIZE
-#ifndef NOFLOAT
  exp $modf
  pro $modf,0
  lal 0
@@ -21,4 +20,3 @@
  sti _EM_DSIZE
  ret _EM_DSIZE
  end
-#endif