FP value encoded as IEEE 754 bit pattern (always a non-negative int).
| 430 | |
| 431 | @dataclass(frozen=True) |
| 432 | class FpLitNode: |
| 433 | """FP value encoded as IEEE 754 bit pattern (always a non-negative int).""" |
| 434 | |
| 435 | bits: int # IEEE 754 bit pattern as uint64 |
| 436 | ebits: int |
| 437 | sbits: int |
| 438 | |
| 439 | |
| 440 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected