mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 06:27:16 +00:00
c469860fdb
llvm-svn: 8724
17 lines
335 B
Plaintext
17 lines
335 B
Plaintext
|
|
; RUN: llvm-as < %s | llvm-dis -c > %t1.cbe.c
|
|
; RUN: gcc -B/usr/bin/ %t1.cbe.c -o %t1.cbe
|
|
; RUN: %t1.cbe
|
|
|
|
bool %doTest(ubyte %x) {
|
|
%dec.0 = add ubyte %x, 255
|
|
%tmp.1001 = cast ubyte %dec.0 to bool
|
|
ret bool %tmp.1001
|
|
}
|
|
|
|
int %main () {
|
|
%result = call bool %doTest(ubyte 1)
|
|
%p = cast bool %result to int
|
|
ret int %p
|
|
}
|