summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/xray-multiplerets-in-blocks.mir
blob: 60a33b95f1412cf548c4de9c2bafa5a8e8887073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# RUN: llc -run-pass=xray-instrumentation -mtriple=x86_64-unknown-linux-gnu -o - %s | FileCheck %s
#
# Make sure we can handle multiple ret instructions in a single basic block for
# XRay.

--- |

  define i32 @foo() noinline uwtable "function-instrument"="xray-always" {
    ret i32 0
    ret i32 1
  }

...

---
name: foo
tracksRegLiveness: true
liveins:
  - { reg: '$edi'}
body:            |
  bb.0:
    liveins: $edi
    ; CHECK: PATCHABLE_FUNCTION_ENTER
    RET64
    ; CHECK-NEXT: PATCHABLE_RET
    RET64
    ; CHECK-NEXT: PATCHABLE_RET
...