[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / ARM / cortex-a57-misched-vstm.ll
blob5e9041ce08429f782cf218b6080e0f47ebe6eb9b
1 ; REQUIRES: asserts
2 ; RUN: llc < %s -mtriple=armv8r-eabi -mcpu=cortex-a57 -mattr=use-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
8 ; CHECK:       VSTMDIA
9 ; CHECK:       rdefs left
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
21   ret void