Dylan McKay

Results 142 comments of Dylan McKay

By the way, I don't think I can delete "dylanmckay marked this as a duplicate of #47 "

We should be able to solve this by placing the switch table into one of the sections merged into `.text` by default, like `.lowtext` (arbitrarily picked).

If I recall correctly, if we pass `--target=avr-unknown`, LLVM also gets configured so that `avr-none` is the default target. The problem with this is that `compiler-rt` does not support AVR,...

We don't want to modify the Makefiles to ignore the host and generate AVR bindings - we want to add support to Rust so that we can call `./configure --target=avr-atmel-none`...

Upstreamed #37 in [r346114](https://github.com/llvm-mirror/llvm/commit/9de46729ce2fb4bf4b2a19b7b387898f256d827f). Also raised [LLVM bug PR39553](https://bugs.llvm.org/show_bug.cgi?id=39553) to track the workaround and a proper fix.

Upstreamed #112 in [r346117](https://github.com/llvm-mirror/llvm/commit/2674d3c5ccb3b57fac1dd38b396bf9d1245bbf60). Also raised [LLVM bug PR39554](https://bugs.llvm.org/show_bug.cgi?id=39554) to track writing of proper unit tests for `FRMIDX` expansion.

This is currently blocked by AVR-LLVM issue [#149](https://github.com/avr-llvm/llvm/issues/149)

Upstream #117 in [r349469](http://llvm.org/viewvc/llvm-project?view=revision&revision=349469)

https://reviews.llvm.org/D53485 has recently landed

I have good news :) I am currently in the (long,slow) process of merging AVR-LLVM directly into the official LLVM repository. Once that is completed, Rust will simply have to...