1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 04:52:54 +02:00
llvm-mirror/test/Feature/alignment.ll
Andrew Lenharth 359af9d3d1 An example for PR1362
llvm-svn: 36484
2007-04-26 19:28:33 +00:00

21 lines
433 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
%X = global int 4, align 16
int *%test() align 32 {
%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
%T = malloc int, align 256
ret int *%X
}