[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / ARM / fast-isel-call-multi-reg-return.ll
blob2c660179aa3cd7bbd12d96ad7260b75bdf1787b1
1 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-apple-ios | FileCheck %s --check-prefix=ARM
2 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-linux-gnueabi | FileCheck %s --check-prefix=ARM
3 ; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios | FileCheck %s --check-prefix=THUMB
5 ; Fast-isel can't handle non-double multi-reg retvals.
6 ; This test just check to make sure we don't hit the assert in FinishCall.
7 define <16 x i8> @foo() nounwind ssp {
8 entry:
9   ret <16 x i8> zeroinitializer
12 define void @t1() nounwind ssp {
13 entry:
14 ; ARM: @t1
15 ; THUMB: @t1
16   %call = call <16 x i8> @foo()
17   ret void