diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-02-23 17:47:25 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-02-23 17:47:25 -0800 |
commit | 130360f8f5caa7b8e10c3a1b4f90a69549ae61d7 (patch) | |
tree | b89ad1865ad0b26e2946b1234de2d2305566b6ee /test | |
parent | a5869fb66646dc08cbdd4b862031678c61720819 (diff) | |
download | nasm-130360f8f5caa7b8e10c3a1b4f90a69549ae61d7.tar.gz |
convergence.asm: add test of jmp to an absolute address
A JMP to an absolute address can't be short. Thus, we must not try to
make it so.
Diffstat (limited to 'test')
-rw-r--r-- | test/convergence.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/convergence.asm b/test/convergence.asm index 54d6ae4a..02ef2e1f 100644 --- a/test/convergence.asm +++ b/test/convergence.asm @@ -32,3 +32,6 @@ corge1: add eax, corge2 - corge1 times 124 nop corge2: + +; this needs to actually *work*... +jmp 12345 |