blob: e09d83f0fb59900dfdde6c84219de98f2dd8c4af (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -e
set -x
clang -std=gnu99 -Wall -Werror -Wno-error=unused-function -Wshorten-64-to-32 -I "${0%/*/*}" "${0%/*}/yjit_asm_tests.c" -o asm_test
./asm_test
rm asm_test
|