1; RUN: rm -f %t.a 2; RUN: llvm-as -o %t.o %s 3; RUN: llvm-as -o %t2.o %S/Inputs/libcall-archive.ll 4; RUN: llvm-ar rcs %t.a %t2.o 5; RUN: wasm-ld -o %t %t.o %t.a 6; RUN: obj2yaml %t | FileCheck %s 7 8target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128" 9target triple = "wasm32-unknown-unknown" 10 11define void @_start(i8* %a, i8* %b) { 12entry: 13 call void @llvm.memcpy.p0i8.p0i8.i64(i8* %a, i8* %b, i64 1024, i1 false) 14 ret void 15} 16 17declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i1) 18 19; CHECK: - Type: CUSTOM 20; CHECK-NEXT: Name: name 21; CHECK-NEXT: FunctionNames: 22; CHECK-NEXT: - Index: 0 23; CHECK-NEXT: Name: _start 24; CHECK-NEXT: - Index: 1 25; CHECK-NEXT: Name: memcpy 26