Reland 877a9f9abec61f06e39f1cd872e37b828139c2d1 since D138654 (parent) has been fixed with 9ebaf4fef4aac89d4eff08e48185d61bc893f14e and with 8f1e11c5a7d70f96943a72649daa69f152d73e90. Differential Revision: https://reviews.llvm.org/D126455
25 lines
789 B
LLVM
25 lines
789 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt -passes=ipsccp -specialize-functions -force-function-specialization -S < %s | FileCheck %s
|
|
|
|
define i32 @main() {
|
|
; CHECK-LABEL: @main(
|
|
; CHECK-NEXT: bb:
|
|
; CHECK-NEXT: tail call void @wombat.1(ptr undef, i64 undef, i64 undef, ptr @quux)
|
|
; CHECK-NEXT: tail call void @wombat.2(ptr undef, i64 undef, i64 undef, ptr @eggs)
|
|
; CHECK-NEXT: ret i32 undef
|
|
;
|
|
bb:
|
|
tail call void @wombat(ptr undef, i64 undef, i64 undef, ptr @quux)
|
|
tail call void @wombat(ptr undef, i64 undef, i64 undef, ptr @eggs)
|
|
ret i32 undef
|
|
}
|
|
|
|
declare i32 @quux()
|
|
declare i32 @eggs()
|
|
|
|
define internal void @wombat(ptr %arg, i64 %arg1, i64 %arg2, ptr %arg3) {
|
|
bb4:
|
|
%tmp = tail call i32 %arg3(ptr undef, ptr undef)
|
|
ret void
|
|
}
|