diff options
author | jonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2007-11-11 16:11:32 +0000 |
---|---|---|
committer | jonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2007-11-11 16:11:32 +0000 |
commit | 0987c887af5171cd5bf72d69ee43ed609f689d46 (patch) | |
tree | 09ba3360ba4bf03963513e54b83eddcb87baf8de /tests | |
parent | e0e1e4dccaccab04f07fe6cd0fd3ec94dae7bcbb (diff) | |
download | fpc-0987c887af5171cd5bf72d69ee43ed609f689d46.tar.gz |
* don't use (non-volatile) ebx in assembler routine
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@9193 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests')
-rw-r--r-- | tests/webtbs/tw0797a.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/webtbs/tw0797a.pp b/tests/webtbs/tw0797a.pp index 8ebdd69d6d..1631b8611d 100644 --- a/tests/webtbs/tw0797a.pp +++ b/tests/webtbs/tw0797a.pp @@ -10,11 +10,11 @@ var var i : longint; asm - movl j,%ebx - movl (%ebx),%eax + movl j,%ecx + movl (%ecx),%eax movl $5,i addl i,%eax - movl %eax,(%ebx) + movl %eax,(%ecx) end; begin |