[Bug inline-asm/28686] ebp from clobber list used as operand

2007-03-13 Thread spark at gcc dot gnu dot org
--- Comment #8 from spark at gcc dot gnu dot org 2007-03-13 23:43 --- I believe all issues are fixed at this point, except for the extra error message of can't find a register. But since it's accompanied with a proper error message, I don't think this is a problem anymore. $gcc -fPIC

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-02-06 Thread spark at gcc dot gnu dot org
--- Comment #7 from spark at gcc dot gnu dot org 2007-02-06 19:43 --- Subject: Bug 28686 Author: spark Date: Tue Feb 6 19:43:41 2007 New Revision: 121663 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=121663 Log: 2007-02-06 Seongbae Park [EMAIL PROTECTED] PR

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-02-01 Thread spark at gcc dot gnu dot org
--- Comment #5 from spark at gcc dot gnu dot org 2007-02-01 17:47 --- -O1 error problem is due to constant assignment of var. If you replace: long var = 42; with something like: long var = func(); It compiles without an error (though it still has the #3 problem of using %ebp even

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-02-01 Thread spark at gcc dot gnu dot org
--- Comment #6 from spark at gcc dot gnu dot org 2007-02-01 23:15 --- Subject: Bug 28686 Author: spark Date: Thu Feb 1 23:15:13 2007 New Revision: 121477 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=121477 Log: 2007-2-01 Seongbae Park [EMAIL PROTECTED] PR

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-01-30 Thread ian at airs dot com
-- ian at airs dot com changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-01-30 Thread michael dot meissner at amd dot com
--- Comment #3 from michael dot meissner at amd dot com 2007-01-30 20:17 --- Created an attachment (id=12982) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12982action=view) Secondary error Note, this is 32-bit only. If you compile epb2.c with -fpic -m32 and no optimization, it

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-01-30 Thread spark at gcc dot gnu dot org
-- spark at gcc dot gnu dot org changed: What|Removed |Added CC|seongbae dot park at gmail | |dot com |

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-01-30 Thread spark at gcc dot gnu dot org
--- Comment #4 from spark at gcc dot gnu dot org 2007-01-31 00:28 --- Looks like eliminable_regset is not cleared per every invocation of global_alloc, making stale bits from the compilation of previous function hang around - hence a presence of a previous function makes difference.

[Bug inline-asm/28686] ebp from clobber list used as operand

2007-01-25 Thread Martin dot vGagern at gmx dot net
--- Comment #2 from Martin dot vGagern at gmx dot net 2007-01-25 11:06 --- As this has been unconfirmed for so long and should be relatively easy to confirm, here are the commands to reproduce the problems above: gcc -fPIC -fomit-frame-pointer -O2 -S ebp.c grep DEBUG ebp.s gcc

[Bug inline-asm/28686] ebp from clobber list used as operand

2006-08-10 Thread Martin dot vGagern at gmx dot net
--- Comment #1 from Martin dot vGagern at gmx dot net 2006-08-10 19:49 --- Created an attachment (id=12058) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12058action=view) Test case including compilation result table This is the above test case, and appended is a table matching