mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Add testcase for not expressions
llvm-svn: 2539
This commit is contained in:
parent
466c66f47a
commit
fdae27abc0
22
test/Regression/Transforms/ConstProp/nottest.ll
Normal file
22
test/Regression/Transforms/ConstProp/nottest.ll
Normal file
@ -0,0 +1,22 @@
|
||||
; Ensure constant propogation of 'not' instructions is working correctly.
|
||||
|
||||
; RUN: if as < %s | opt -constprop | dis | grep not
|
||||
; RUN: then exit 1
|
||||
; RUN: else exit 0
|
||||
; RUN: fi
|
||||
|
||||
int "test1"() {
|
||||
%R = not int 4
|
||||
ret int %R
|
||||
}
|
||||
|
||||
int "test2"() {
|
||||
%R = not int -23
|
||||
ret int %R
|
||||
}
|
||||
|
||||
bool "test3"() {
|
||||
%R = not bool true
|
||||
ret bool %R
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user