[Bug middle-end/40501] [4.5 Regression] error: invalid conversion in gimple call

2009-07-09 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2009-07-09 15:41 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug middle-end/40501] [4.5 Regression] error: invalid conversion in gimple call

2009-06-24 Thread krebbel at gcc dot gnu dot org
--- Comment #6 from krebbel at gcc dot gnu dot org 2009-06-24 07:01 --- Subject: Bug 40501 Author: krebbel Date: Wed Jun 24 07:01:24 2009 New Revision: 148892 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=148892 Log: 2009-06-24 Andreas Krebbel PR middle-end/40501

[Bug middle-end/40501] [4.5 Regression] error: invalid conversion in gimple call

2009-06-23 Thread rguenth at gcc dot gnu dot org
--- Comment #5 from rguenth at gcc dot gnu dot org 2009-06-23 09:37 --- The idea is ok though do not use make_rename_temp but the usual create_tmp_var, add_referenced_var, make_ssa_name sequence. The checking currently only matches the return value (it does so since the beginning of the

[Bug middle-end/40501] [4.5 Regression] error: invalid conversion in gimple call

2009-06-22 Thread krebbel at gcc dot gnu dot org
--- Comment #4 from krebbel at gcc dot gnu dot org 2009-06-22 17:20 --- Created an attachment (id=18047) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18047&action=view) Initial Patch - not bootstrapped yet I currently don't understand why this didn't occur earlier. Did become the

[Bug middle-end/40501] [4.5 Regression] error: invalid conversion in gimple call

2009-06-22 Thread krebbel at gcc dot gnu dot org
-- krebbel at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |krebbel at gcc dot gnu dot |dot org

[Bug middle-end/40501] [4.5 Regression] error: invalid conversion in gimple call

2009-06-21 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2009-06-21 23:33 --- Reduced testcase: typedef long int int64_t; int64_t swap64(int64_t n) { return ( ((n & (((int64_t) 0xff) )) << 56) | ((n & (((int64_t) 0xff) << 8)) << 40) | ((n & (((int64_t) 0xff) << 16)) << 24) | ((n

[Bug middle-end/40501] [4.5 Regression] error: invalid conversion in gimple call

2009-06-21 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2009-06-21 23:23 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON