PR#5487: forgot to add two new files

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12186 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Xavier Leroy 2012-02-24 09:55:07 +00:00
parent 5b14388ad0
commit 6112d8e0da
2 changed files with 10 additions and 0 deletions

3
config/auto-aux/cfi.S Normal file
View File

@ -0,0 +1,3 @@
.cfi_startproc
.cfi_adjust_cfa_offset 8
.cfi_endproc

View File

@ -0,0 +1,7 @@
#!/bin/sh
if test "$verbose" = yes; then
echo "tryassemble: $aspp -o tst $*" >&2
$aspp -o tst $* || exit 100
else
$aspp -o tst $* 2> /dev/null || exit 100
fi