summaryrefslogtreecommitdiff
path: root/llvm/test/Instrumentation/AddressSanitizer/musttail.ll
blob: fed4521c195a4841c0dfcf11995d039891fb846b (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
29
30
31
32
33
34
; To test that asan does not break the musttail call contract.
;
; RUN: opt < %s -passes=asan -S | FileCheck %s

define internal i32 @foo(ptr %p) sanitize_address {
  %rv = load i32, ptr %p
  ret i32 %rv
}

declare void @alloca_test_use(ptr)
define i32 @call_foo(ptr %a) sanitize_address {
  %x = alloca [10 x i8], align 1
  call void @alloca_test_use(ptr %x)
  %r = musttail call i32 @foo(ptr %a)
  ret i32 %r
}

; CHECK-LABEL:  define i32 @call_foo(ptr %a) 
; CHECK:          %r = musttail call i32 @foo(ptr %a)
; CHECK-NEXT:     ret i32 %r


define i32 @call_foo_cast(ptr %a) sanitize_address {
  %x = alloca [10 x i8], align 1
  call void @alloca_test_use(ptr %x)
  %r = musttail call i32 @foo(ptr %a)
  %t = bitcast i32 %r to i32
  ret i32 %t
}

; CHECK-LABEL:  define i32 @call_foo_cast(ptr %a)
; CHECK:          %r = musttail call i32 @foo(ptr %a)
; CHECK-NEXT:     %t = bitcast i32 %r to i32
; CHECK-NEXT:     ret i32 %t