[Bug tree-optimization/15484] [tree-ssa] bool and short function arguments promoted to int

2008-11-20 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2008-11-20 23:35 --- (In reply to comment #6) > Still happens in 4.4. But as mentioned this is not really a bug. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/15484] [tree-ssa] bool and short function arguments promoted to int

2008-11-20 Thread dann at godzilla dot ics dot uci dot edu
--- Comment #6 from dann at godzilla dot ics dot uci dot edu 2008-11-20 23:27 --- Still happens in 4.4. -- dann at godzilla dot ics dot uci dot edu changed: What|Removed |Added -

[Bug tree-optimization/15484] [tree-ssa] bool and short function arguments promoted to int

2005-06-02 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2005-06-02 18:44 --- How is this related to VRP at all? Removing dependency on 18373. -- What|Removed |Added

[Bug tree-optimization/15484] [tree-ssa] bool and short function arguments promoted to int

2005-05-16 Thread rguenth at gcc dot gnu dot org
--- Additional Comments From rguenth at gcc dot gnu dot org 2005-05-16 13:55 --- Maybe the same problem results in static inline bool wrap(bool f) { return f; } bool bar(bool f) { return wrap(f); } producing return (int) (bool) (int) (bool) (int) f; (and more, if you add an

[Bug tree-optimization/15484] [tree-ssa] bool and short function arguments promoted to int

2004-12-28 Thread dann at godzilla dot ics dot uci dot edu
--- Additional Comments From dann at godzilla dot ics dot uci dot edu 2004-12-29 01:33 --- (In reply to comment #2) > The underlying ABI might require short & bool arguments to be passed as int. > Some do, some don't. Anyway, that's an argument marshalling issue, which is > not > curr

[Bug tree-optimization/15484] [tree-ssa] bool and short function arguments promoted to int

2004-11-17 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2004-11-17 13:33 --- The underlying ABI might require short & bool arguments to be passed as int. Some do, some don't. Anyway, that's an argument marshalling issue, which is not currently addressed at the tree level. The cast