Walter's talk on D backend

Walter Bright newshound2 at digitalmars.com
Tue Sep 24 06:23:24 UTC 2024


```
x = x + 6
```

```
r1 = x
r2 = 6
r3 = r1 + r2
x = r3
```

The r's are only assigned once.


More information about the Digitalmars-d mailing list