In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / CodeGen / CBackend / 2008-02-01-UnalignedLoadStore.ll
blob269126d7598379d25a3bc7a950c5f32ad4efd690
1 ; RUN: llvm-as < %s | llc -march=c | \
2 ; RUN:          grep {struct __attribute__ ((packed, aligned(} | count 4
4 define void @test(i32* %P) {
5         %X = load i32* %P, align 1
6         store i32 %X, i32* %P, align 1
7         ret void
10 define void @test2(i32* %P) {
11         %X = volatile load i32* %P, align 2
12         volatile store i32 %X, i32* %P, align 2
13         ret void