From: Jim Laskey Date: Thu, 15 Jun 2006 19:35:07 +0000 (+0000) Subject: Make sure global doubles and vectors are aligned properly. X-Git-Tag: android-x86-6.0-r1~1003^2~41969 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e4808ed44a0280f439ac977e80031fce28b5abab;p=android-x86%2Fexternal-llvm.git Make sure global doubles and vectors are aligned properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28805 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/align.ll b/test/CodeGen/PowerPC/align.ll new file mode 100644 index 00000000000..e2045d71e85 --- /dev/null +++ b/test/CodeGen/PowerPC/align.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -march=ppc32 | grep "align.4" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=ppc32 | grep "align.2" | wc -l | grep 1 && +; RUN: llvm-as < %s | llc -march=ppc32 | grep "align.3" | wc -l | grep 1 + + +%A = global <4 x uint> < uint 10, uint 20, uint 30, uint 40 > +%B = global float 1.000000e+02 +%C = global double 2.000000e+03 +