blob: acbadbef9fb4af7db748b960f5e78d7083a999dc (
plain)
1
2
3
4
5
6
7
8
9
|
-include ../tools.mk
all:
# The tests must pass...
$(RUSTC) main.rs
$(call RUN,main)
# ... and the loads/stores must not be optimized out.
$(RUSTC) main.rs --emit=llvm-ir
$(CGREP) "load volatile" "store volatile" < $(TMPDIR)/main.ll
|