Commit 240cf3e5 by Jakub Jelinek Committed by Jakub Jelinek

re PR tree-optimization/83283 (Casting from boolean to unsigned char to enum…

re PR tree-optimization/83283 (Casting from boolean to unsigned char to enum returns incorrect results)

	PR tree-optimization/83283
	* g++.dg/torture/pr83283.C: New test.

From-SVN: r255417
parent 1b6546cc
2017-12-05 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/83283
* g++.dg/torture/pr83283.C: New test.
2017-12-05 Ed Schonberg <schonberg@adacore.com>
* gnat.dg/private_overriding.adb: New testcase.
......
// PR tree-optimization/83283
// { dg-do run }
// { dg-additional-options "-std=c++11" }
enum E : unsigned char { X = 0, Y = 1 };
void __attribute__((noinline))
foo (E *v, int size)
{
for (int i = 0; i < size; ++i)
{
const bool b = (v[i] == E::Y);
v[i] = static_cast<E>(static_cast<unsigned char>(b));
}
}
int
main ()
{
constexpr int items = 32;
E vals[items] = {X};
vals[3] = Y;
foo (vals, items);
if (vals[3] != 1)
__builtin_abort ();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment