aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ConstProp/InsertElement.ll
blob: d249c2eb1c515e03923d1a3075663ba42220ffda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: opt < %s -constprop -S | FileCheck %s

define i32 @test1() {
  %A = bitcast i32 2139171423 to float
  %B = insertelement <1 x float> undef, float %A, i32 0
  %C = extractelement <1 x float> %B, i32 0
  %D = bitcast float %C to i32
  ret i32 %D
; CHECK: @test1
; CHECK: ret i32 2139171423
}