From 130360f8f5caa7b8e10c3a1b4f90a69549ae61d7 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Mon, 23 Feb 2009 17:47:25 -0800 Subject: [PATCH] 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. --- test/convergence.asm | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.11.4.GIT