Do more to modernize MergeFunctions. Refactor in response to Chris' code review.
[llvm.git] / test / Scripts / ignore
blob865ae4df1bd4d13b909bb97cca787d91782ee17a
1 #!/bin/sh
3 # Program: ignore
5 # Synopsis: Ignore the result code of the command and always return 0
7 # Syntax: ignore command <arguments>
9 "$@" || exit 0 && exit 0
10 exit 0