| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-03-29 | compiler: "illegal behavior", not "undefined behavior", in errors | mlugg | |
| 2024-02-26 | Sema: fix compile error for switching on undefined union | John Schmidt | |
| Before this fix, passing an undefined union value to `Sema.switchCond` returned an undefined value of the union type, not the tag type, since `Value.unionTag` forwards undefined values unchanged. This leads us into the `.Union` branch in `Sema.zirSwitchBlock` which is unreachable, now we take the `.Enum` branch instead. | |||
