Dylan McKay
Dylan McKay
Previously the interface would never be set on Mac. This presents a big pain because retrieving interface numbers can be the only way to distinguish between the interfaces returned by...
We could add `impl Middleware for Option`. Then piplines could be done line so ```rust struct Pipeline { encryption: Option, compression: Option, } fn handle(packet: _, pipeline: &mut Pipeline) {...
In 19efbfa7fd18613bae6df367b5eb0c8fa4582d52, a new `#[protocol(name = "foo")]` attribute was introduced for enum variants. We should support transmission of structures as field_name:field_value pairs so that fields may be added. When this...
When loading an XML file that begins with a byte order mark, xml-rs raises a parsing error. Found indirectly when using the `xmltree` crate Here is the first few bytes...
| | | | --- | --- | | Bugzilla Link | [31348](https://llvm.org/bz31348) | | Version | trunk | | OS | All | ## Extended Description We should write...
`RJMP .+12` is properly encoded. `RJMP 12` is not. In fact they are treated and encoded the same. All relative jump targets act as if there is an implicit `.[+][-]`...
There are two instructions which perform direct stores to data space. - `STS k, Rr` - `STS k, Rr` They have the same mnemonic, but one is a 32-bit wide...
In [AVRISelDAGToDAG.cpp](https://github.com/avr-llvm/llvm/blob/99bd6580f430156d387274271f1225ee52f3dfc3/lib/Target/AVR/AVRISelDAGToDAG.cpp#L397), we unconditionally lower 16-bit program memory loads into the `LPMW` instruction. We should only lower to this instruction if the `LPMX` feature is enabled (`Subtarget->hasLPMX()`).