llvm-6502/test/CodeGen/PIC16/sext.ll
Benjamin Kramer 32e6518de3 XFAIL some PIC16 tests when running under valgrind-leaks. I don't expect these
to be fixed any time soon.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99888 91177308-0d34-0410-b5e6-96231b3b80d8
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
}