llvm-6502/test/Transforms/ConstProp/nottest.ll
Chris Lattner d0cad7a5f5 Change not's to xors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3329 91177308-0d34-0410-b5e6-96231b3b80d8
2002-08-14 19:26:34 +00:00

23 lines
344 B
LLVM

; Ensure constant propogation of 'not' instructions is working correctly.
; RUN: if as < %s | opt -constprop -die | dis | grep xor
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
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
}