reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
# RUN: llc -mtriple=aarch64-none-linux-gnu -run-pass none -o - %s | FileCheck %s

--- |

  define void @use_intrin() {
    ret void
  }

...
---
# Completely invalid code, but it checks that intrinsics round-trip properly.
# CHECK: G_INTRINSIC intrinsic(@llvm.returnaddress)
name:            use_intrin
body: |
  bb.0:
    %0:_(s64) = G_INTRINSIC intrinsic(@llvm.returnaddress)
    RET_ReallyLR
...