bug0124.pp 270 B

1234567891011
  1. { Compile with -Rintel switch }
  2. var
  3. l : longint;
  4. begin
  5. { problem here is that l is replaced by BP-offset }
  6. { relative to stack, and the parser thinks all wrong }
  7. { because of this. }
  8. asm
  9. mov eax, [eax*4+l]
  10. end;
  11. end.