about summary refs log tree commit diff
path: root/src/librustc_data_structures/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-08-11 22:11:45 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-08-11 22:42:21 -0700
commitbbef8893f798452874f15374992804c8184c32c5 (patch)
tree1812eacb670c43d35cbe6d5b5a522c3f4ae63362 /src/librustc_data_structures/lib.rs
parent00ac2c0550d98609c813da07ac400eaa4aaf1730 (diff)
parentb6b4f5a0e7a98d918d7c5a56e291c0063f257f1e (diff)
downloadrust-bbef8893f798452874f15374992804c8184c32c5.tar.gz
rust-bbef8893f798452874f15374992804c8184c32c5.zip
rollup merge of #27676: alexcrichton/msvc-unwind
This commit leverages the runtime support for DWARF exception info added
in #27210 to enable unwinding by default on 64-bit MSVC. This also additionally
adds a few minor fixes here and there in the test harness and such to get
`make check` entirely passing on 64-bit MSVC:

* The invocation of `maketest.py` now works with spaces/quotes in CC
* debuginfo tests are disabled on MSVC
* A link error for librustc was hacked around (see #27438)
Diffstat (limited to 'src/librustc_data_structures/lib.rs')
-rw-r--r--src/librustc_data_structures/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs
index d050dff75ab..897a05952e6 100644
--- a/src/librustc_data_structures/lib.rs
+++ b/src/librustc_data_structures/lib.rs
@@ -38,3 +38,7 @@ pub mod graph;
 pub mod bitvec;
 pub mod ivar;
 pub mod unify;
+
+// See comments in src/librustc/lib.rs
+#[doc(hidden)]
+pub fn __noop_fix_for_27438() {}