blob: 08682e5975e5163e80843f3b5a2c14f90e727092 (
plain)
1
2
3
4
5
6
7
8
9
10
|
-include ../tools.mk
ifdef SANITIZER_SUPPORT
all:
$(RUSTC) -g -Z sanitizer=memory -Z print-link-args uninit.rs | grep -q librustc_msan
$(TMPDIR)/uninit 2>&1 | grep -q use-of-uninitialized-value
else
all:
endif
|