est 2008-06-04-indirectmem.ll is X86-specific. Move to X86 folder.
[oota-llvm.git] / test / CodeGen / CBackend / 2005-02-14-VolatileOperations.ll
1 ; RUN: llc < %s -march=c | grep volatile
2
3 define void @test(i32* %P) {
4         %X = volatile load i32* %P              ; <i32> [#uses=1]
5         volatile store i32 %X, i32* %P
6         ret void
7 }
8