mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
6b2c7ae2c9
both in Linux and Darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67191 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
397 B
LLVM
19 lines
397 B
LLVM
; RUN: llvm-as < %s | llc -march=x86-64 -relocation-model=pic > %t
|
|
; RUN: grep {movswl %ax, %edi} %t
|
|
; RUN: grep {movw (%rax), %ax} %t
|
|
|
|
@x = common global i16 0
|
|
|
|
define signext i16 @f() nounwind {
|
|
entry:
|
|
%0 = tail call signext i16 @h() nounwind
|
|
%1 = sext i16 %0 to i32
|
|
tail call void @g(i32 %1) nounwind
|
|
%2 = load i16* @x, align 2
|
|
ret i16 %2
|
|
}
|
|
|
|
declare signext i16 @h()
|
|
|
|
declare void @g(i32)
|