forked from OSchip/llvm-project
14 lines
292 B
LLVM
14 lines
292 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop | llvm-dis | grep 'ret i32 -1' &&
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -constprop | llvm-dis | grep 'ret i32 1'
|
|
|
|
int %test1() {
|
|
%A = sext bool true to int
|
|
ret int %A
|
|
}
|
|
|
|
uint %test2() {
|
|
%A = zext bool true to uint
|
|
ret uint %A
|
|
}
|
|
|