diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-05 22:07:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-05 22:07:30 +0000 |
commit | 4e240c25e34e8a032ab23e09981069d77939a2d8 (patch) | |
tree | 0efa3fa62719c35f07fd1bba0ecf699a05928324 | |
parent | 8ae779da700f2b1d27598fe71a81cc717a8c461c (diff) |
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24202 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Feature/alignment.ll | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Feature/alignment.ll b/test/Feature/alignment.ll new file mode 100644 index 0000000000..0a63675bd0 --- /dev/null +++ b/test/Feature/alignment.ll @@ -0,0 +1,17 @@ +; RUN: llvm-as %s -o - | llvm-dis > %t1.ll +; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll +; RUN: diff %t1.ll %t2.ll + +int *%test() { + %X = alloca int, align 4 + %Y = alloca int, uint 42, align 16 + %Z = alloca int, align 0 + ret int *%X +} + +int *%test2() { + %X = malloc int, align 4 + %Y = malloc int, uint 42, align 16 + %Z = malloc int, align 0 + ret int *%X +} |