diff options
author | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
commit | 009b1c42aa6266385f2c37e227516b24077e6dd7 (patch) | |
tree | 64ba909838c23261cace781ece27d106134ea451 /test/CodeGen/PowerPC/align.ll |
Diffstat (limited to 'test/CodeGen/PowerPC/align.ll')
-rw-r--r-- | test/CodeGen/PowerPC/align.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/align.ll b/test/CodeGen/PowerPC/align.ll new file mode 100644 index 0000000000000..7ffbe3676704c --- /dev/null +++ b/test/CodeGen/PowerPC/align.ll @@ -0,0 +1,11 @@ +; RUN: llvm-as < %s | llc -march=ppc32 | \ +; RUN: grep align.4 | count 1 +; RUN: llvm-as < %s | llc -march=ppc32 | \ +; RUN: grep align.2 | count 1 +; RUN: llvm-as < %s | llc -march=ppc32 | \ +; RUN: grep align.3 | count 1 + +@A = global <4 x i32> < i32 10, i32 20, i32 30, i32 40 > ; <<4 x i32>*> [#uses=0] +@B = global float 1.000000e+02 ; <float*> [#uses=0] +@C = global double 2.000000e+03 ; <double*> [#uses=0] + |