brintos

brintos / llvm-project-archived public Read only

0
0
Text · 299 B · 8ff7c44 Raw
11 lines · plain
1; RUN: llc -mtriple=aarch64 -global-isel -global-isel-abort=2 %s -o - | FileCheck %s2 3; CHECK-LABEL: test_asm:4; CHECK: {{APP|InlineAsm Start}}5; CHECK: mov x0, {{x[0-9]+}}6; CHECK: {{NO_APP|InlineAsm End}}7define void @test_asm() {8  call void asm sideeffect "mov x0, $0", "r"(i64 42)9  ret void10}11