[RISC-V] Avoid unnecessary extensions when value is already extended
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / pr96699.c
blobc68e45a9401696e3bc8f8986a367bb893c07623e
1 struct qi {
2 union {
3 int hj;
4 float sl;
5 };
6 };
8 void
9 i2 (struct qi *la)
11 if (la->hj == 0)
12 la->sl = 0.0f;