reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
; RUN: llc -mtriple=i386 -mcpu=generic -O0 -o /dev/null %s

@c = global i32 0
@d = global <2 x i64> zeroinitializer

define void @test() {
bb1:
  %t0 = load <2 x i64>, <2 x i64>* @d
  %t0.i0 = extractelement <2 x i64> %t0, i32 0
  %t0.i0.cast = bitcast i64 %t0.i0 to <2 x i32>
  %t0.i0.cast.i0 = extractelement <2 x i32> %t0.i0.cast, i32 0
  store volatile i32 %t0.i0.cast.i0, i32* @c
  %t0.i0.cast.i1 = extractelement <2 x i32> %t0.i0.cast, i32 1
  store volatile i32 %t0.i0.cast.i1, i32* @c
  ret void
}