Displaying 4 results from an estimated 4 matches for "ccbaj8x9".
2009 Apr 21
2
[LLVMdev] problems with dwarf/gdb
Well...
$ ~/software/llvm-gcc4.2-2.5-x86-linux-RHEL4/bin/llvm-gcc -g gdb1.c -o gdb1
/tmp/ccbAj8x9.s: Assembler messages:
/tmp/ccbAj8x9.s:35: Error: suffix or operands invalid for `push'
/tmp/ccbAj8x9.s:44: Error: suffix or operands invalid for `pop'
/tmp/ccbAj8x9.s:56: Error: suffix or operands invalid for `push'
/tmp/ccbAj8x9.s:65: Error: suffix or operands invalid for `pop'
/t...
2009 Apr 21
0
[LLVMdev] problems with dwarf/gdb
On Apr 20, 2009, at 5:06 PMPDT, Ken McMillan wrote:
>
> Well...
>
> $ ~/software/llvm-gcc4.2-2.5-x86-linux-RHEL4/bin/llvm-gcc -g gdb1.c -
> o gdb1
> /tmp/ccbAj8x9.s: Assembler messages:
> /tmp/ccbAj8x9.s:35: Error: suffix or operands invalid for `push'
> /tmp/ccbAj8x9.s:44: Error: suffix or operands invalid for `pop'
> /tmp/ccbAj8x9.s:56: Error: suffix or operands invalid for `push'
> /tmp/ccbAj8x9.s:65: Error: suffix or operands inva...
2009 Apr 15
0
[LLVMdev] problems with dwarf/gdb
Ken McMillan wrote:
> I see. Here's another interesting issue:
>
> (gdb) b gdb1.c:4
> No line 4 in file "gdb1.c".
> (gdb) step
> foo () at /home/mcmillan/projects/impact2/test//gdb1.c:4
> 4 x++;
> (gdb)
>
> You can see that I can step to line 4, but I can't set a breakpoint there.
>
Works fine here (llvm 2.5, 32 bit, gdb 6.8)
Try
llc
2009 Apr 15
2
[LLVMdev] problems with dwarf/gdb
I see. Here's another interesting issue:
(gdb) b gdb1.c:4
No line 4 in file "gdb1.c".
(gdb) step
foo () at /home/mcmillan/projects/impact2/test//gdb1.c:4
4 x++;
(gdb)
You can see that I can step to line 4, but I can't set a breakpoint there.
(I used -disable-fp-elim in the compilation).
Have you seen this before?
Thanks -- Ken
Dale Johannesen wrote:
>
>
> On