about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-03-27 22:39:37 +0100
committerGitHub <noreply@github.com>2020-03-27 22:39:37 +0100
commit08e867cc3a30f8fb3339cfcc3dbb4daff6da3dcc (patch)
treefe3aced007575530ecc4798287aac037cd504cbe /src/test
parent75208942f6144daac669e8e382029fc33bdce841 (diff)
parent02840ca8ab3a1eddda05bc2cbc9df62213fa2b3d (diff)
downloadrust-08e867cc3a30f8fb3339cfcc3dbb4daff6da3dcc.tar.gz
rust-08e867cc3a30f8fb3339cfcc3dbb4daff6da3dcc.zip
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
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-make-fulldeps/no-integrated-as/Makefile8
-rw-r--r--src/test/run-make-fulldeps/no-integrated-as/hello.rs3
2 files changed, 0 insertions, 11 deletions
diff --git a/src/test/run-make-fulldeps/no-integrated-as/Makefile b/src/test/run-make-fulldeps/no-integrated-as/Makefile
deleted file mode 100644
index 1567b325d4f..00000000000
--- a/src/test/run-make-fulldeps/no-integrated-as/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
--include ../tools.mk
-
-# only-linux
-# only-x86_64
-
-all:
-	$(RUSTC) hello.rs -C no_integrated_as
-	$(call RUN,hello)
diff --git a/src/test/run-make-fulldeps/no-integrated-as/hello.rs b/src/test/run-make-fulldeps/no-integrated-as/hello.rs
deleted file mode 100644
index e7a11a969c0..00000000000
--- a/src/test/run-make-fulldeps/no-integrated-as/hello.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-fn main() {
-    println!("Hello, world!");
-}