8e12397d70
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
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()
|