433da1fc04
They pass fine.
9 lines
209 B
Makefile
9 lines
209 B
Makefile
include ../tools.mk
|
|
|
|
all:
|
|
$(RUSTC) foo.rs --emit llvm-ir -C codegen-units=2
|
|
if cat $(TMPDIR)/*.ll | $(CGREP) -e '\bcall\b'; then \
|
|
echo "found call instruction when one wasn't expected"; \
|
|
exit 1; \
|
|
fi
|