Change these tests to feed the assembly files to opt directly, instead
[oota-llvm.git] / test / Transforms / DeadStoreElimination / volatile-load.ll
1 ; RUN: opt %s -dse | llvm-dis | 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 }