The goal is to use this in some of test cases, by comparing the expected output with the actual one. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- sparse-llvm-dis | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 sparse-llvm-dis diff --git a/sparse-llvm-dis b/sparse-llvm-dis new file mode 100755 index 000000000..573f8bbd0 --- /dev/null +++ b/sparse-llvm-dis @@ -0,0 +1,13 @@ +#!/bin/sh + +set +e + +DIRNAME=`dirname $0` +DIS=`"${LLVM_CONFIG:-llvm-config}" --bindir`/llvm-dis + +if [ $# -eq 0 ]; then + echo "`basename $0`: no input files" + exit 1 +fi + +$DIRNAME/sparse-llvm $@ | $DIS -- 2.11.1 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html