[llvm] 29843cb - [FuncSpec] Add test for a call site that will never be executed. NFC.

Sjoerd Meijer via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 16 02:11:16 PDT 2021


Author: Sjoerd Meijer
Date: 2021-06-16T10:10:52+01:00
New Revision: 29843cbc88f6f91bc8eb350f847a4b07070d8765

URL: https://github.com/llvm/llvm-project/commit/29843cbc88f6f91bc8eb350f847a4b07070d8765
DIFF: https://github.com/llvm/llvm-project/commit/29843cbc88f6f91bc8eb350f847a4b07070d8765.diff

LOG: [FuncSpec] Add test for a call site that will never be executed. NFC.

Added: 
    llvm/test/Transforms/FunctionSpecialization/function-specialization-noexec.ll

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/llvm/test/Transforms/FunctionSpecialization/function-specialization-noexec.ll b/llvm/test/Transforms/FunctionSpecialization/function-specialization-noexec.ll
new file mode 100644
index 000000000000..428ac5d09c48
--- /dev/null
+++ b/llvm/test/Transforms/FunctionSpecialization/function-specialization-noexec.ll
@@ -0,0 +1,36 @@
+; RUN: opt -function-specialization -force-function-specialization -S < %s | FileCheck %s
+
+; The if.then block is not executed, so check that we don't specialise here.
+
+; CHECK-NOT: @func.1(
+; CHECK-NOT: @func.2(
+
+target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
+
+ at A = external dso_local constant i32, align 4
+ at 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, i32* @A)
+  br label %return
+
+if.else:
+  %call1 = call i32 @foo(i32 %y, i32* @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, i32* %b) {
+entry:
+  %0 = load i32, i32* %b, align 4
+  %add = add nsw i32 %x, %0
+  ret i32 %add
+}


        


More information about the llvm-commits mailing list