Home | History | Annotate | Download | only in InstCombine
      1 ; RUN: opt < %s -instcombine -S | grep load
      2 
      3 define void @test(i32* %P) {
      4         ; Dead but not deletable!
      5         %X = load volatile i32, i32* %P              ; <i32> [#uses=0]
      6         ret void
      7 }
      8