New testcase crashing the instruction combiner
[oota-llvm.git] / test / Transforms / InstCombine / 2003-09-09-VolatileLoadElim.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep load
2 void %test(int* %P) {
3         %X = volatile load int* %P  ; Dead but not deletable!
4         ret void
5 }