[Alignment][NFC] migrate DataLayout internal struct to llvm::Align
[llvm-core.git] / test / CodeGen / AArch64 / GlobalISel / inline-asm.ll
blob8ff7c4495dccb461aa287455f9e49bc6d70f56f3
1 ; RUN: llc -mtriple=aarch64 -global-isel -global-isel-abort=2 %s -o - | FileCheck %s
3 ; CHECK-LABEL: test_asm:
4 ; CHECK: {{APP|InlineAsm Start}}
5 ; CHECK: mov x0, {{x[0-9]+}}
6 ; CHECK: {{NO_APP|InlineAsm End}}
7 define void @test_asm() {
8   call void asm sideeffect "mov x0, $0", "r"(i64 42)
9   ret void