summary refs log tree commit diff
path: root/src/test/run-make/sanitizer-memory/Makefile
blob: 3507ca2bef2a051caf862acb322f86ae9bf48367 (plain)
1
2
3
4
5
6
7
8
9
10
-include ../tools.mk

all:
ifeq ($(TARGET),x86_64-unknown-linux-gnu)
ifdef SANITIZER_SUPPORT
	$(RUSTC) -g -Z sanitizer=memory -Z print-link-args uninit.rs | $(CGREP) librustc_msan
	$(TMPDIR)/uninit 2>&1 | $(CGREP) use-of-uninitialized-value
endif
endif