brintos

brintos / llvm-project-archived public Read only

0
0
Text · 227 B · b5d0697 Raw
13 lines · plain
1; RUN: opt -S -passes=instcombine < %s | FileCheck %s2 3define void @test1() {4entry:5  call void @tan()6  ret void7}8; CHECK-LABEL: define void @test1(9; CHECK:      call void @tan()10; CHECK-NEXT: ret void11 12declare void @tan()13