2023-03-30 08:46:31 -05:00
|
|
|
# ignore-cross-compile
|
2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2013-12-28 08:01:53 -06:00
|
|
|
|
|
|
|
all:
|
|
|
|
# The tests must pass...
|
|
|
|
$(RUSTC) main.rs
|
|
|
|
$(call RUN,main)
|
|
|
|
# ... and the loads/stores must not be optimized out.
|
2014-12-15 18:03:39 -06:00
|
|
|
$(RUSTC) main.rs --emit=llvm-ir
|
2017-11-23 09:19:50 -06:00
|
|
|
$(CGREP) "load volatile" "store volatile" < $(TMPDIR)/main.ll
|