blob: 890d61e7ca2d32f4c80dd5abd14945040b9ae979 [file] [log] [blame]
Chris Lattner83da4f82003-09-09 18:15:45 +00001; RUN: as < %s | opt -instcombine | dis | grep load
2void %test(int* %P) {
3 %X = volatile load int* %P ; Dead but not deletable!
4 ret void
5}