diff options
Diffstat (limited to 'test/Assembler/2007-04-20-AlignedStore.ll')
-rw-r--r-- | test/Assembler/2007-04-20-AlignedStore.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Assembler/2007-04-20-AlignedStore.ll b/test/Assembler/2007-04-20-AlignedStore.ll new file mode 100644 index 0000000..c3681fc --- /dev/null +++ b/test/Assembler/2007-04-20-AlignedStore.ll @@ -0,0 +1,7 @@ +; RUN: llvm-as < %s |& llvm-dis | grep 'align 1024' + +define void @test(i32* %arg) { +entry: + store i32 0, i32* %arg, align 1024 + ret void +} |