1# RUN: llc -mtriple=aarch64-none-linux-gnu -run-pass none -o - %s | FileCheck %s
2
3--- |
4
5  define void @use_intrin() {
6    ret void
7  }
8
9...
10---
11# Completely invalid code, but it checks that intrinsics round-trip properly.
12# CHECK: G_INTRINSIC intrinsic(@llvm.returnaddress)
13name:            use_intrin
14body: |
15  bb.0:
16    %0:_(s64) = G_INTRINSIC intrinsic(@llvm.returnaddress)
17    RET_ReallyLR
18...
19