mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
380 B
Makefile
13 lines
380 B
Makefile
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"
|