8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
13 lines
220 B
LLVM
13 lines
220 B
LLVM
; RUN: opt -S -instcombine < %s | FileCheck %s
|
|
|
|
define void @test1() {
|
|
entry:
|
|
call void @tan()
|
|
ret void
|
|
}
|
|
; CHECK-LABEL: define void @test1(
|
|
; CHECK: call void @tan()
|
|
; CHECK-NEXT: ret void
|
|
|
|
declare void @tan()
|