2022-08-23 00:00:00 +00:00
|
|
|
include ../tools.mk
|
2017-10-11 08:47:47 -07:00
|
|
|
|
|
|
|
all:
|
2021-01-11 16:27:59 -03:00
|
|
|
$(RUSTC) foo.rs --emit llvm-ir -C codegen-units=2
|
2017-11-23 23:19:50 +08:00
|
|
|
if cat $(TMPDIR)/*.ll | $(CGREP) -e '\bcall\b'; then \
|
2017-10-11 08:47:47 -07:00
|
|
|
echo "found call instruction when one wasn't expected"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|