Change not's to xors

llvm-svn: 3329
This commit is contained in:
Chris Lattner 2002-08-14 19:26:34 +00:00
parent 330b7ac76c
commit 94126ed044
1 changed files with 4 additions and 4 deletions

View File

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