1; RUN: llc -fast-isel -fast-isel-abort=1 -verify-machineinstrs < %s | FileCheck %s 2target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128" 3target triple = "aarch64-linux-gnu" 4 5define i8* @test_call_return_type(i64 %size) { 6entry: 7; CHECK: bl xmalloc 8 %0 = call noalias i8* @xmalloc(i64 undef) 9 ret i8* %0 10} 11 12declare noalias i8* @xmalloc(i64) 13