Rollup merge of #70345 - nnethercote:rm-no_integrated_as, r=alexcrichton

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.

r? @alexcrichton
This commit is contained in:
Mazdak Farrokhzad 2020-03-27 22:39:37 +01:00 committed by GitHub
commit 08e867cc3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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!");
}