[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AArch64 / volatile-combine.ll
blob32fea1990ce79ee089bec8ff2fe1a7bf3648a9b4
1 ; RUN: llc -mtriple=arm64-apple-ios %s -o - -stop-after=finalize-isel 2>&1 | FileCheck %s
3 define void @foo(i64 %a, i64 %b, i32* %ptr) {
4 ; CHECK-LABEL: name: foo
5 ; CHECK: STRWui {{.*}} (volatile store (s32) into %ir.ptr)
6   %sum = add i64 %a, 1
7   %sum.32 = trunc i64 %sum to i32
8   store volatile i32 %sum.32, i32* %ptr
9   ret void