llvm-6502/test/Transforms/ConstProp/nottest.ll
2003-06-28 23:23:34 +00:00

20 lines
297 B
LLVM

; Ensure constant propogation of 'not' instructions is working correctly.
; RUN: as < %s | opt -constprop -die | 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
}