These tests don't work unless SSE2 is active.
[oota-llvm.git] / test / Scripts / not
1 #!/bin/sh
2 #
3 # Program: not
4 #
5 # Synopsis: Inverse the output of the program specified on the command line
6 #
7 # Syntax:   not command <arguments>
8
9 if "$@"
10 then exit 1
11 else exit 0
12 fi