mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
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()
|