1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/ConstProp/nottest.ll

23 lines
344 B
LLVM
Raw Normal View History

; Ensure constant propogation of 'not' instructions is working correctly.
2002-08-14 21:26:34 +02:00
; RUN: if as < %s | opt -constprop -die | dis | grep xor
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
int "test1"() {
2002-08-14 21:26:34 +02:00
%R = xor int 4, -1
ret int %R
}
int "test2"() {
2002-08-14 21:26:34 +02:00
%R = xor int -23, -1
ret int %R
}
bool "test3"() {
2002-08-14 21:26:34 +02:00
%R = xor bool true, true
ret bool %R
}