mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-25 14:32:53 +00:00
0a1581bfa8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2540 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
330 B
LLVM
23 lines
330 B
LLVM
; Ensure constant propogation of 'not' instructions is working correctly.
|
|
|
|
; RUN: if as < %s | opt -constprop -die | 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
|
|
}
|
|
|