Browse Source

+ added "nostackframe" to routine with code that should assemble into
a single instruction

git-svn-id: trunk@25585 -

Jonas Maebe 12 years ago
parent
commit
8e107217f6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/webtbs/tw19910.pp

+ 2 - 2
tests/webtbs/tw19910.pp

@@ -1,11 +1,11 @@
 { %cpu=i386 }
-procedure p1;assembler;
+procedure p1;assembler;nostackframe;
   asm
     INSERTQ $1,$3,%xmm0,%xmm1
   end;
 
 {$asmmode intel}
-procedure p2;assembler;
+procedure p2;assembler;nostackframe;
   asm
     INSERTQ xmm1,xmm0,3,1
   end;