Browse Source

+ test for the initial bug

git-svn-id: branches/tg74/avx512merge@43301 -
florian 5 years ago
parent
commit
99d44ce40e
2 changed files with 14 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 13 0
      tests/webtbs/tw32219.pp

+ 1 - 0
.gitattributes

@@ -17615,6 +17615,7 @@ tests/webtbs/tw3216.pp svneol=native#text/plain
 tests/webtbs/tw32160.pp svneol=native#text/plain
 tests/webtbs/tw3217.pp svneol=native#text/plain
 tests/webtbs/tw32179.pp svneol=native#text/plain
+tests/webtbs/tw32219.pp svneol=native#text/plain
 tests/webtbs/tw3222.pp svneol=native#text/plain
 tests/webtbs/tw3226.pp svneol=native#text/plain
 tests/webtbs/tw3227.pp svneol=native#text/plain

+ 13 - 0
tests/webtbs/tw32219.pp

@@ -0,0 +1,13 @@
+{ %cpu=x86_64 }
+{ %norun }
+program project1;
+
+{$mode objfpc}{$H+}
+{$ASMMODE intel}
+
+begin
+  asm
+    vaddsd	xmm0, xmm0, qword ptr [rax]
+    vaddsd	xmm0, xmm0, qword ptr [rax + 8]
+  end;
+end.