]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/volatile-intrinsics/Makefile
:arrow_up: rust-analyzer
[rust.git] / src / test / run-make-fulldeps / volatile-intrinsics / Makefile
1 include ../tools.mk
2
3 all:
4         # The tests must pass...
5         $(RUSTC) main.rs
6         $(call RUN,main)
7         # ... and the loads/stores must not be optimized out.
8         $(RUSTC) main.rs --emit=llvm-ir
9         $(CGREP) "load volatile" "store volatile" < $(TMPDIR)/main.ll