xref: /aosp_15_r20/external/llvm/test/Transforms/InstCombine/pr28143.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: opt -S -instcombine < %s | FileCheck %s
2
3define void @test1() {
4entry:
5  call void @tan()
6  ret void
7}
8; CHECK-LABEL: define void @test1(
9; CHECK:      call void @tan()
10; CHECK-NEXT: ret void
11
12declare void @tan()
13