aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ConstProp/nottest.ll
blob: cfff9aebab01be9dd6cd591bee9b90e9e57f4728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; Ensure constant propogation of 'not' instructions is working correctly.

; RUN: if as < %s | opt -constprop -die | dis | grep not
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi

int "test1"() {
	%R = not int 4
	ret int %R
}

int "test2"() {
	%R = not int -23
	ret int %R
}

bool "test3"() {
	%R = not bool true
	ret bool %R
}