Zig Version
0.17.0-dev.76+ff612334f
Steps to Reproduce and Observed Behavior
Write a repro.zig with any code:
exportfnanything()void{}
Compile to any target with the AVR architecture:
zig build-obj repro.zig -target avr-freestanding-none
Output:
error: Alias and aliasee types don't match (Producer: 'zig 0.17.0' Reader: 'LLVM 21.1.8')
Expected Behavior
The code compiles successfully.
### Zig Version
0.17.0-dev.76+ff612334f
### Steps to Reproduce and Observed Behavior
Write a `repro.zig` with any code:
```zig
export fn anything() void {}
```
Compile to any target with the AVR architecture:
```sh
zig build-obj repro.zig -target avr-freestanding-none
```
Output:
```
error: Alias and aliasee types don't match (Producer: 'zig 0.17.0' Reader: 'LLVM 21.1.8')
```
### Expected Behavior
The code compiles successfully.