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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; Testcases comes from PR126817 and PR107569
; See PR54964 and langref for more information about how llvm deal with musttail currently
; RUN: opt -passes=deadargelim -S < %s | FileCheck %s
define i64 @A() {
; CHECK-LABEL: define i64 @A() {
; CHECK-NEXT: [[ENTRY:.*:]]
; CHECK-NEXT: [[V2660:%.*]] = musttail call i64 @B()
; CHECK-NEXT: ret i64 [[V2660]]
;
entry:
%v2660 = musttail call i64 @B()
ret i64 %v2660
}
define internal i64 @B() {
; CHECK-LABEL: define internal i64 @B() {
; CHECK-NEXT: [[ENTRY:.*:]]
; CHECK-NEXT: ret i64 0
;
entry:
ret i64 0
}
define internal i64 @C() {
; CHECK-LABEL: define internal i64 @C() {
; CHECK-NEXT: [[ENTRY:.*:]]
; CHECK-NEXT: [[V30543:%.*]] = musttail call i64 @B()
; CHECK-NEXT: ret i64 [[V30543]]
;
entry:
%v30543 = musttail call i64 @B()
ret i64 %v30543
}
%struct.S = type { double }
define internal %struct.S @F38() {
; CHECK-LABEL: define internal %struct.S @F38() {
; CHECK-NEXT: ret [[STRUCT_S:%.*]] zeroinitializer
;
ret %struct.S { double 0.0 }
}
define internal %struct.S @F36() {
; CHECK-LABEL: define internal %struct.S @F36() {
; CHECK-NEXT: [[TMP1:%.*]] = alloca [[STRUCT_S:%.*]], align 8
; CHECK-NEXT: [[TMP2:%.*]] = musttail call [[STRUCT_S]] @[[F38:[a-zA-Z0-9_$\"\\.-]*[a-zA-Z_$\"\\.-][a-zA-Z0-9_$\"\\.-]*]]()
; CHECK-NEXT: ret [[STRUCT_S]] [[TMP2]]
;
%1 = alloca %struct.S, align 8
%3 = musttail call %struct.S @F38()
ret %struct.S %3
}
define double @foo() {
; CHECK-LABEL: define double @foo() {
; CHECK-NEXT: [[TMP1:%.*]] = call [[STRUCT_S:%.*]] @[[F36:[a-zA-Z0-9_$\"\\.-]*[a-zA-Z_$\"\\.-][a-zA-Z0-9_$\"\\.-]*]]()
; CHECK-NEXT: [[TMP2:%.*]] = extractvalue [[STRUCT_S]] [[TMP1]], 0
; CHECK-NEXT: ret double [[TMP2]]
;
%3 = call %struct.S @F36()
%5 = extractvalue %struct.S %3, 0
ret double %5
}
|