1 ; RUN: llc < %s -o - | FileCheck %s
3 target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
4 target triple = "arm64-apple-os"
6 declare <4 x double> @user_func(<4 x double>) #1
8 ; Make sure we are not crashing on this code.
9 ; CHECK-LABEL: caller_function
11 define void @caller_function(<4 x double>, <4 x double>, <4 x double>, <4 x double>, <4 x double>) #1 {
13 %r = call <4 x double> @user_func(<4 x double> %4)
17 attributes #1 = { nounwind readnone }