1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00
llvm-mirror/test/CodeGen/PIC16/sext.ll
Benjamin Kramer 1be90cca94 XFAIL some PIC16 tests when running under valgrind-leaks. I don't expect these
to be fixed any time soon.

llvm-svn: 99888
2010-03-30 14:34:13 +00:00

12 lines
253 B
LLVM

; RUN: llc < %s -march=pic16
; XFAIL: vg_leak
@main.auto.c = internal global i8 0 ; <i8*> [#uses=1]
define i16 @main() nounwind {
entry:
%tmp = load i8* @main.auto.c ; <i8> [#uses=1]
%conv = sext i8 %tmp to i16 ; <i16> [#uses=1]
ret i16 %conv
}