From fd838487e014453a6a7868b6fb81a11e0ca83168 Mon Sep 17 00:00:00 2001 From: carl Date: Thu, 2 Apr 1998 02:57:02 +0000 Subject: [PATCH] * bug with -Rintel switch.... --- bugs/bug0125.pp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 bugs/bug0125.pp diff --git a/bugs/bug0125.pp b/bugs/bug0125.pp new file mode 100644 index 0000000000..3e31d7f07a --- /dev/null +++ b/bugs/bug0125.pp @@ -0,0 +1,11 @@ + +var + l : longint; +begin + { problem here is that l is replaced by BP-offset } + { relative to stack, and the parser thinks all wrong } + { because of this. } + asm + mov eax, [eax*4+l] + end; +end.