aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/CBackend/2008-02-01-UnalignedLoadStore.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/CBackend/2008-02-01-UnalignedLoadStore.ll')
-rw-r--r--test/CodeGen/CBackend/2008-02-01-UnalignedLoadStore.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/CBackend/2008-02-01-UnalignedLoadStore.ll b/test/CodeGen/CBackend/2008-02-01-UnalignedLoadStore.ll
index 6e0cf68..e6eeba3 100644
--- a/test/CodeGen/CBackend/2008-02-01-UnalignedLoadStore.ll
+++ b/test/CodeGen/CBackend/2008-02-01-UnalignedLoadStore.ll
@@ -8,8 +8,8 @@ define void @test(i32* %P) {
}
define void @test2(i32* %P) {
- %X = volatile load i32* %P, align 2
- volatile store i32 %X, i32* %P, align 2
+ %X = load volatile i32* %P, align 2
+ store volatile i32 %X, i32* %P, align 2
ret void
}