brintos

brintos / llvm-project-archived public Read only

0
0
Text · 788 B · 2c66017 Raw
19 lines · plain
1; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-apple-ios | FileCheck %s --check-prefix=ARM2; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-linux-gnueabi | FileCheck %s --check-prefix=ARM3; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios | FileCheck %s --check-prefix=THUMB4 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.7define <16 x i8> @foo() nounwind ssp {8entry:9  ret <16 x i8> zeroinitializer10}11 12define void @t1() nounwind ssp {13entry:14; ARM: @t115; THUMB: @t116  %call = call <16 x i8> @foo()17  ret void18}19