#!/bin/sh

which llvm-cov > /dev/null
if [ $? != 0 ]; then
    echo '-- llvm-cov is not found ---' 1>&2
    exit 1
fi

exec llvm-cov gcov "$@"
