mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
6c7ada4c58
that cannot be suppressed and cannot be redirected: they are dumped in the current working directory. When running the testsuite this means that these files do not end up in the Output directory. The best solution I could find is to change directory into Output before running tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40437 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
354 B
Plaintext
17 lines
354 B
Plaintext
|
|
; RUN: llvm-upgrade < %s | llvm-as | llc -march=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 = trunc 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
|
|
}
|