mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 16:31:16 +00:00
167831dcac
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127364 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
258 B
LLVM
11 lines
258 B
LLVM
; RUN: llc < %s -march=x86-64 | FileCheck %s
|
|
; RUN: llc < %s -march=x86 | FileCheck %s
|
|
; CHECK: memcpy
|
|
define void @foo([40000 x i32] *%P) nounwind {
|
|
call void @bar([40000 x i32] * byval align 1 %P)
|
|
ret void
|
|
}
|
|
|
|
declare void @bar([40000 x i32] *%P )
|
|
|