소스 검색

+ test (worked already)

git-svn-id: trunk@38349 -
florian 7 년 전
부모
커밋
72efa1aa50
2개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .gitattributes
  2. 17 0
      tests/webtbs/tw32001.pp

+ 1 - 0
.gitattributes

@@ -15960,6 +15960,7 @@ tests/webtbs/tw3185.pp svneol=native#text/plain
 tests/webtbs/tw3190.pp svneol=native#text/plain
 tests/webtbs/tw31945.pp svneol=native#text/pascal
 tests/webtbs/tw3197.pp svneol=native#text/plain
+tests/webtbs/tw32001.pp svneol=native#text/pascal
 tests/webtbs/tw32019.pp svneol=native#text/plain
 tests/webtbs/tw32039.pp svneol=native#text/pascal
 tests/webtbs/tw32040.pp svneol=native#text/pascal

+ 17 - 0
tests/webtbs/tw32001.pp

@@ -0,0 +1,17 @@
+{ %CPU=i386,x86_64 }
+
+{$asmmode intel}
+procedure test;assembler;
+asm
+  CMPEQPS xmm1, xmm2
+  CMPLTPS xmm1, xmm2
+  CMPLEPS xmm1, xmm2
+  CMPUNORDPS xmm1, xmm2
+  CMPNEQPS xmm1, xmm2
+  CMPNLTPS xmm1, xmm2
+  CMPNLEPS xmm1, xmm2
+  CMPORDPS xmm1, xmm2
+end;
+
+begin
+end.