Remove no_integrated_as mode.

Specifically, remove both `-Z no_integrated_as` and
`TargetOptions::no_integrated_as`. The latter was only used for the
`msp430_none_elf` platform, for which it's no longer required.
This commit is contained in:
Nicholas Nethercote 2020-03-24 14:06:47 +11:00
parent 62c6006450
commit 02840ca8ab
8 changed files with 26 additions and 129 deletions

View file

@ -1,8 +0,0 @@
-include ../tools.mk
# only-linux
# only-x86_64
all:
$(RUSTC) hello.rs -C no_integrated_as
$(call RUN,hello)

View file

@ -1,3 +0,0 @@
fn main() {
println!("Hello, world!");
}