diff options
| author | Nicholas Nethercote <nnethercote@mozilla.com> | 2020-03-24 14:06:47 +1100 |
|---|---|---|
| committer | Nicholas Nethercote <nnethercote@mozilla.com> | 2020-03-27 11:59:10 +1100 |
| commit | 02840ca8ab3a1eddda05bc2cbc9df62213fa2b3d (patch) | |
| tree | bc5af73894e1b4c8bd5c3d87b1960a94cf708bb7 /src/librustc_interface | |
| parent | 62c6006450d8bd33a351673c1f969846d768aab4 (diff) | |
| download | rust-02840ca8ab3a1eddda05bc2cbc9df62213fa2b3d.tar.gz rust-02840ca8ab3a1eddda05bc2cbc9df62213fa2b3d.zip | |
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.
Diffstat (limited to 'src/librustc_interface')
| -rw-r--r-- | src/librustc_interface/tests.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc_interface/tests.rs b/src/librustc_interface/tests.rs index 6a6d0a8f061..8a8ba8a96f7 100644 --- a/src/librustc_interface/tests.rs +++ b/src/librustc_interface/tests.rs @@ -452,10 +452,6 @@ fn test_codegen_options_tracking_hash() { assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash()); opts = reference.clone(); - opts.cg.no_integrated_as = true; - assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash()); - - opts = reference.clone(); opts.cg.no_redzone = Some(true); assert!(reference.dep_tracking_hash() != opts.dep_tracking_hash()); |
