blob: d3ad57fc11167cee8a4e9d7df17c33b30994466a [file] [log] [blame]
Brian Gaeke508a41b2003-06-23 19:59:17 +00001
Chris Lattneraa829432004-02-13 23:33:17 +00002; RUN: llvm-as < %s | llc -march=c > %t1.cbe.c
John Criswellf3534ab2003-09-26 16:43:51 +00003; RUN: gcc -B/usr/bin/ %t1.cbe.c -o %t1.cbe
4; RUN: %t1.cbe
Brian Gaeke508a41b2003-06-23 19:59:17 +00005
6bool %doTest(ubyte %x) {
7 %dec.0 = add ubyte %x, 255
8 %tmp.1001 = cast ubyte %dec.0 to bool
9 ret bool %tmp.1001
10}
11
12int %main () {
13 %result = call bool %doTest(ubyte 1)
14 %p = cast bool %result to int
15 ret int %p
16}