Teach lit that the .c files in 'test/CodeGen/CellSPU/useful-harnesses' aren't tests.
[oota-llvm.git] / test / Transforms / DeadStoreElimination / volatile-load.ll
1 ; RUN: opt < %s -dse -S | grep {volatile load}
2
3 @g_1 = global i32 0
4
5 define void @foo() nounwind  {
6         %t = volatile load i32* @g_1
7         ret void
8 }