mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 02:25:19 +00:00
New test case for C Writer regression found in 256.bzip2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6868 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
16
test/CBackend/2003-06-23-PromotedExprs.llx
Normal file
16
test/CBackend/2003-06-23-PromotedExprs.llx
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
; RUN: as < %s | dis -c > Output/%s.cbe.c
|
||||||
|
; RUN: gcc -B/usr/bin/ Output/%s.cbe.c -o Output/%s.cbe
|
||||||
|
; RUN: Output/%s.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
|
||||||
|
}
|
16
test/CodeGen/CBackend/2003-06-23-PromotedExprs.llx
Normal file
16
test/CodeGen/CBackend/2003-06-23-PromotedExprs.llx
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
; RUN: as < %s | dis -c > Output/%s.cbe.c
|
||||||
|
; RUN: gcc -B/usr/bin/ Output/%s.cbe.c -o Output/%s.cbe
|
||||||
|
; RUN: Output/%s.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
|
||||||
|
}
|
Reference in New Issue
Block a user