diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-12-08 18:54:14 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-12-08 18:54:14 +0000 |
commit | b0a579947e75a434b54d5f36f52c26ed0c1f9e84 (patch) | |
tree | 74c8fb346e1a1f0178270db12a6295117d4ce3cf | |
parent | 3afe74123249d0a1a65308b8d1f18849bbe6910e (diff) |
correct lcall opcode. fix provided by Hans-Joerg Hoexer
<hshoexer at yerbouti dot franken dot de> via pr/3014.
mickey@ and weingart@ ok.
-rw-r--r-- | gnu/usr.bin/gas/opcode/i386.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/gas/opcode/i386.h b/gnu/usr.bin/gas/opcode/i386.h index c16d54f6f3d..ce1234ef4cd 100644 --- a/gnu/usr.bin/gas/opcode/i386.h +++ b/gnu/usr.bin/gas/opcode/i386.h @@ -1,4 +1,4 @@ -/* $OpenBSD: i386.h,v 1.9 2002/07/23 02:54:54 fgsch Exp $ */ +/* $OpenBSD: i386.h,v 1.10 2002/12/08 18:54:13 fgsch Exp $ */ /* i386-opcode.h -- Intel 80386 opcode table Copyright (C) 1989, 1991, Free Software Foundation. @@ -266,7 +266,7 @@ static const template i386_optab[] = { {"call", 1, 0xe8, _, JumpDword, Disp32, 0, 0}, {"call", 1, 0xff, 2, Modrm, Reg|Mem|JumpAbsolute, 0, 0}, #define CALL_FAR_IMMEDIATE 0x9a -{"lcall", 2, 0x9a, _, JumpInterSegment, Imm16, Abs32, 0}, +{"lcall", 2, 0x9a, _, JumpInterSegment, Imm16, Imm32, 0}, {"lcall", 1, 0xff, 3, Modrm, Mem, 0, 0}, #define JUMP_PC_RELATIVE 0xeb |