summaryrefslogtreecommitdiffstats
path: root/tests/run-make/optimization-remarks-dir/Makefile
blob: a8342c8ad14d5ee676b925167262265d2e34f4d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include ../tools.mk

PROFILE_DIR=$(TMPDIR)/profiles

all: check_inline check_filter

check_inline:
	$(RUSTC) -O foo.rs --crate-type=lib -Cremark=all -Zremark-dir=$(PROFILE_DIR)
	cat $(PROFILE_DIR)/*.opt.yaml | $(CGREP) -e "inline"
check_filter:
	$(RUSTC) -O foo.rs --crate-type=lib -Cremark=foo -Zremark-dir=$(PROFILE_DIR)
	cat $(PROFILE_DIR)/*.opt.yaml | $(CGREP) -e -v "inline"