Browse Source

+ test (worked already)

git-svn-id: trunk@38349 -
florian 7 years ago
parent
commit
72efa1aa50
2 changed files with 18 additions and 0 deletions
  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.