blob: 7cba15ca5dd9a1078797a154596892b995d5fa97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Alright, let's try to figure out how to classify this bug report. The user provided a category list including things like mistranslation, assembly lowering, and others. The bug is related to the FPU/softfloat in QEMU.
Looking at the report, the issue mentions that after a refactor, the behavior of int32_to_float32() changed. Specifically, it's affecting TriCore ftoi instructions. The problem arises because helper_ftoi() relies on this function raising certain flags for NaN and infinity cases, which isn't happening anymore.
The user suggests that the fix involves modifying round_to_int_and_pack() to raise these flags but is concerned about breaking other targets.
Since the bug is within the FPU handling, particularly in how floating-point numbers are being converted from integers (ftoi), it seems related to assembly lowering or instruction translation. The function int32_to_float32() is part of this process, so the issue likely falls under the 'assembly' category as it's about translating instructions correctly.
I don't see any mention of network, devices, graphics, or other specific areas, so categories like those are probably not applicable here.
</think>
assembly
|