llvm-6502/test/CBackend/2003-06-23-PromotedExprs.llx
John Criswell e3e7c474f2 Checkin of autoconf-style object root.
Updated TestRunner tests so that they work correctly in a separate object root
directory.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8383 91177308-0d34-0410-b5e6-96231b3b80d8
2003-09-06 15:15:04 +00:00

17 lines
323 B
Plaintext

; RUN: as < %s | dis -c > f1.cbe.c
; RUN: gcc -B/usr/bin/ f1.cbe.c -o f1.cbe
; RUN: ./f1.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
}