diff options
author | Dale Johannesen <dalej@apple.com> | 2008-03-11 17:48:26 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-03-11 17:48:26 +0000 |
commit | dc78da52b9164414ee952b4cf5da975d7efa8dd3 (patch) | |
tree | 074a159c97d3bc34ea69b9fc29f925cb5123dbce | |
parent | 73b8ffd0bdd7a8997c571887eefe3a9703868327 (diff) | |
download | external_llvm-dc78da52b9164414ee952b4cf5da975d7efa8dd3.zip external_llvm-dc78da52b9164414ee952b4cf5da975d7efa8dd3.tar.gz external_llvm-dc78da52b9164414ee952b4cf5da975d7efa8dd3.tar.bz2 |
The feature this is testing did not work in the general case,
and has been removed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48232 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/PowerPC/Frames-align.ll | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/PowerPC/Frames-align.ll b/test/CodeGen/PowerPC/Frames-align.ll deleted file mode 100644 index 21a9343..0000000 --- a/test/CodeGen/PowerPC/Frames-align.ll +++ /dev/null @@ -1,17 +0,0 @@ -; RUN: llvm-upgrade < %s | llvm-as | \ -; RUN: llc -march=ppc32 -mtriple=powerpc-apple-darwin8 | \ -; RUN: grep {rlwinm r0, r1, 0, 22, 31} -; RUN: llvm-upgrade < %s | llvm-as | \ -; RUN: llc -march=ppc32 -mtriple=powerpc-apple-darwin8 | \ -; RUN: grep {subfic r0, r0, -16448} -; RUN: llvm-upgrade < %s | llvm-as | \ -; RUN: llc -march=ppc64 -mtriple=powerpc-apple-darwin8 | \ -; RUN: grep {rldicl r0, r1, 0, 54} -; XFAIL: * - -implementation - -int* %f1() { - %tmp = alloca int, uint 4095, align 1024 - ret int* %tmp -} |