Files
clang-p2996/llvm/test/Transforms/FunctionSpecialization/function-specialization-noexec.ll
Alexandros Lamprineas 8136a0172b [FuncSpec] Make the Function Specializer part of the IPSCCP pass.
Reland 877a9f9abe since D138654 (parent)
has been fixed with 9ebaf4fef4 and with
8f1e11c5a7.

Differential Revision: https://reviews.llvm.org/D126455
2022-12-10 14:39:49 +00:00

37 lines
882 B
LLVM

; RUN: opt -passes=ipsccp -specialize-functions -force-function-specialization -S < %s | FileCheck %s
; The if.then block is not executed, so check that we don't specialise here.
; CHECK-NOT: @foo.1(
; CHECK-NOT: @foo.2(
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
@A = external dso_local constant i32, align 4
@B = external dso_local constant i32, align 4
define dso_local i32 @bar(i32 %x, i32 %y) {
entry:
%tobool = icmp ne i32 %x, 0
br i1 false, label %if.then, label %if.else
if.then:
%call = call i32 @foo(i32 %x, ptr @A)
br label %return
if.else:
%call1 = call i32 @foo(i32 %y, ptr @B)
br label %return
return:
%retval.0 = phi i32 [ %call, %if.then ], [ %call1, %if.else ]
ret i32 %retval.0
}
define internal i32 @foo(i32 %x, ptr %b) {
entry:
%0 = load i32, ptr %b, align 4
%add = add nsw i32 %x, %0
ret i32 %add
}