diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-07-17 15:36:56 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-07-17 15:36:56 +0000 |
commit | 411bd29eea3c360d5b48a18a17b5e87f5671af0e (patch) | |
tree | c8086addb211fa670a9d2b1038d8c2e453229755 /test/Integer/alignment_bt.ll | |
parent | 56fe8f14099930935e3870e3e823c322a85c1c89 (diff) |
Diffstat (limited to 'test/Integer/alignment_bt.ll')
-rw-r--r-- | test/Integer/alignment_bt.ll | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/test/Integer/alignment_bt.ll b/test/Integer/alignment_bt.ll deleted file mode 100644 index 3a9d0511d7f7..000000000000 --- a/test/Integer/alignment_bt.ll +++ /dev/null @@ -1,21 +0,0 @@ -; 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 - -@X = global i19 4, align 16 - -define i19 *@test() align 32 { - %X = alloca i19, align 4 - %Y = alloca i51, i32 42, align 16 - %Z = alloca i32, align 1 - ret i19 *%X -} - -define i19 *@test2() { - %X = malloc i19, align 4 - %Y = malloc i51, i32 42, align 16 - %Z = malloc i32, align 1 - ret i19 *%X -} - - |