2 ; RUN: llc < %s -mtriple=armv8r-eabi -mcpu=cortex-a57 -misched-postra -enable-misched -verify-misched -debug-only=machine-scheduler -o - 2>&1 > /dev/null | FileCheck %s
4 ; CHECK: ********** MI Scheduling **********
5 ; We need second, post-ra scheduling to have VSTM instruction combined from single-stores
6 ; CHECK: ********** MI Scheduling **********
7 ; CHECK: schedule starting
10 ; CHECK-NEXT: Latency : 2
12 %bigVec = type [2 x double]
14 @var = global %bigVec zeroinitializer
16 define void @bar(%bigVec* %ptr) {
18 %tmp = load %bigVec, %bigVec* %ptr
19 store %bigVec %tmp, %bigVec* @var