Module: wine Branch: master Commit: 28dd48227978d7aabfad018c6d9a428a08cba240 URL: http://source.winehq.org/git/wine.git/?a=commit;h=28dd48227978d7aabfad018c6d...
Author: Eric Pouech eric.pouech@orange.fr Date: Sat Jul 11 21:19:05 2009 +0200
winedbg: 'Int XX' is not a function call, so don't try to handle it as such on i386.
---
programs/winedbg/be_i386.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/programs/winedbg/be_i386.c b/programs/winedbg/be_i386.c index ce2076c..c22ef14 100644 --- a/programs/winedbg/be_i386.c +++ b/programs/winedbg/be_i386.c @@ -543,9 +543,6 @@ static unsigned be_i386_is_func_call(const void* insn, ADDRESS64* callee) } return TRUE;
- case 0xCD: - WINE_FIXME("Unsupported yet call insn (0x%02x) at %p\n", ch, insn); - /* fall through */ default: return FALSE; }