소스 검색

* removed compiler directives from source as per Isaac's request

git-svn-id: trunk@11857 -
Vincent Snijders 17 년 전
부모
커밋
61f26d5a96
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      tests/bench/shootout/src/mandelbrot.pp

+ 4 - 4
tests/bench/shootout/src/mandelbrot.pp

@@ -3,14 +3,14 @@
 
   contributed by Ales Katona
   modified by Vincent Snijders
+  
+  additional compiler options:
+  i386: -Cfsse2
+  x86_64: none
 }
 
 program mandelbrot;
 
-{$IFDEF CPUI386}
-{$FPUTYPE SSE2}{$I-}
-{$ENDIF}
-
 var n: longint;
     TextBuf: array[0..$FFF] of byte;
     OutFile: PText;