blob: 658afff2bae0cdc9cb01a13ecb756fac789bcfd5 [file] [log] [blame]
Chris Lattner679da032002-05-06 17:00:47 +00001; This test makes sure that these instructions are properly eliminated.
2;
3
4; RUN: if as < %s | opt -instcombine -dce | dis | grep not
5; RUN: then exit 1
6; RUN: else exit 0
7; RUN: fi
8
9implementation
10
11int "test1"(int %A) {
12 %B = not int %A
13 %C = not int %B
14 ret int %C
15}
16