diff options
author | Peter Johnson <peter@tortall.net> | 2006-05-31 06:13:01 +0000 |
---|---|---|
committer | Peter Johnson <peter@tortall.net> | 2006-05-31 06:13:01 +0000 |
commit | eca4d7c5c26a4308754fe88f8dfce3521e3a1525 (patch) | |
tree | 05c7deaecb648c3017e8596c6256dd7727b71caa /modules/arch/x86/tests/far64.asm | |
parent | 26e2ac882f43b0965918a22b6f147f6e95d33f3e (diff) | |
parent | 3d9deea532e8b6e3aee321eb554055178427fd36 (diff) | |
download | yasm-eca4d7c5c26a4308754fe88f8dfce3521e3a1525.tar.gz |
Merge [1333]-[1543] (inclusive) into new-optimizer branch. This results in
a temporary regression of functionality but will yield some benefits later
on (chief among them is easier eventual merging back to the mainline!).
svn path=/branches/new-optimizer/; revision=1545
Diffstat (limited to 'modules/arch/x86/tests/far64.asm')
-rw-r--r-- | modules/arch/x86/tests/far64.asm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/arch/x86/tests/far64.asm b/modules/arch/x86/tests/far64.asm new file mode 100644 index 00000000..4456b88d --- /dev/null +++ b/modules/arch/x86/tests/far64.asm @@ -0,0 +1,7 @@ +[bits 64] +call far dword [0] +call far qword [0] +call far [0] +jmp far dword [0] +jmp far qword [0] +jmp far [0] |