aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/pr30929.ll
blob: 2d19775f31216f95ffc29f4be0b047c6ebfe024c (plain)
1
2
3
4
5
6
7
8
9
10
11
; We need this pipeline because to trigger dominator info verification
; we have to compute the dominator before libcalls-shrinkwrap and
; have a pass which requires the dominator tree after.
; RUN: opt -domtree -libcalls-shrinkwrap -instcombine -verify-dom-info %s

define void @main() {
  %_tmp31 = call float @acosf(float 2.000000e+00)
  ret void
}

declare float @acosf(float)