Add workaround for Cortex-M3 errata 602117 by replacing ldrd x, y, [x] with ldm or...
[oota-llvm.git] / test / Assembler / 2007-04-20-AlignedStore.ll
1 ; RUN: llvm-as < %s | llvm-dis | grep {align 1024}
2
3 define void @test(i32* %arg) {
4 entry:
5         store i32 0, i32* %arg, align 1024
6         ret void
7 }