blob: fe9b09480a8435595e0d6417683a5b547d3c4fe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
; Ensure constant propogation of 'not' instructions is working correctly.
; RUN: llvm-as < %s | opt -constprop -die | llvm-dis | not grep xor
int "test1"() {
%R = xor int 4, -1
ret int %R
}
int "test2"() {
%R = xor int -23, -1
ret int %R
}
bool "test3"() {
%R = xor bool true, true
ret bool %R
}
|