]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/volatile-intrinsics/Makefile
Move /src/test to /tests
[rust.git] / tests / 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