1 ; RUN: opt -S -instcombine < %s | FileCheck %s 2 3 define void @test1() { 4 entry: 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 12 declare void @tan() 13