[Bug c++/30277] bit-field: wrong overload resolution

2019-09-06 Thread contacts at buymore dot pro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=30277

nicbrown  changed:

   What|Removed |Added

 CC||contacts at buymore dot pro

--- Comment #5 from nicbrown  ---
In C++03, integral promotions for bit-fields are specified in 4.5
https://tinyurl.com/y39m4st6

[Bug target/21809] Floating Optimization Bug

2019-09-06 Thread contacts at buymore dot pro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=21809

nicbrown  changed:

   What|Removed |Added

 CC||contacts at buymore dot pro

--- Comment #23 from nicbrown  ---
This is a target problem, as the RTL is correct.
Looks like there is a forgotten rounding back https://tinyurl.com/y46wuubk to
float.
Read the code carefully:

test-case.c: 
#include 
volatile float x = 3;
int main()
{
float a = 1 / x;
x = a;
assert(a == x);
}

Fixed???

[Bug debug/28834] [4.0/4.1/4.2/4.3 Regression] -g crashes sometimes when using may_alias and structs (ICE in splice_child_die)

2019-08-15 Thread contacts at buymore dot pro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28834

nicbrown  changed:

   What|Removed |Added

 CC||contacts at buymore dot pro

--- Comment #33 from nicbrown  ---
Created attachment 46717
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=46717=edit
true