mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
4572ce85b0
llvm-svn: 33296
20 lines
322 B
LLVM
20 lines
322 B
LLVM
; Ensure constant propogation of 'not' instructions is working correctly.
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop -die | llvm-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
|
|
}
|
|
|