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