Mercurial > hg > CbC > CbC_llvm
view test/Transforms/InstCombine/pr28143.ll @ 121:803732b1fca8
LLVM 5.0
author | kono |
---|---|
date | Fri, 27 Oct 2017 17:07:41 +0900 |
parents | 1172e4bd9c6f |
children |
line wrap: on
line source
; 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()