diff --git a/.gitattributes b/.gitattributes index f505ba0e25..60c225815d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -17672,6 +17672,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 diff --git a/tests/webtbs/tw32219.pp b/tests/webtbs/tw32219.pp new file mode 100644 index 0000000000..26e52c1896 --- /dev/null +++ b/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.