]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/intrinsic-unreachable/Makefile
:arrow_up: rust-analyzer
[rust.git] / src / test / run-make-fulldeps / intrinsic-unreachable / Makefile
1 -include ../tools.mk
2
3 # ignore-windows-msvc
4 #
5 # Because of Windows exception handling, the code is not necessarily any shorter.
6 # https://github.com/llvm-mirror/llvm/commit/64b2297786f7fd6f5fa24cdd4db0298fbf211466
7
8 all:
9         $(RUSTC) -O --emit asm exit-ret.rs
10         $(RUSTC) -O --emit asm exit-unreachable.rs
11         test `wc -l < $(TMPDIR)/exit-unreachable.s` -lt `wc -l < $(TMPDIR)/exit-ret.s`