Bug? (invalid disassembly modifier)

Discussion about CodeLite development process and patches
serega386
CodeLite Curious
Posts: 1
Joined: Tue Jul 27, 2010 3:42 pm
Genuine User: Yes
IDE Question: C++
Contact:

Bug? (invalid disassembly modifier)

Post by serega386 »

Code: Select all

#include <stdio.h>

int main(int argc, char **argv)
{
	printf("hello world\n");
	fwrite("hello_world\n", 12, 1, stdout);
	return 0;
}

Code: Select all

Starting debugger  : gdb --tty=/dev/pts/2 --interpreter=mi "./hello1"
GNU gdb (GDB) 7.1-ubuntu
...
Continuing...
DEBUG>>disassemble/10i $pc
DEBUG>>&"disassemble/10i $pc\n"
DEBUG>>&"Invalid disassembly modifier.\n"
DEBUG>>^error,msg="Invalid disassembly modifier."
^error,msg="Invalid disassembly modifier."
DEBUG>>print $argc
DEBUG>>&"print $argc\n"
DEBUG>>~"$1 = void"
$1 = void
DEBUG>>~"\n"

DEBUG>>^done
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Bug? (invalid disassembly modifier)

Post by eranif »

I am not sure whether this is a bug or not. If it is a bug, you should report it to gdb mailing list
Eran
Make sure you have read the HOW TO POST thread
Post Reply