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 | 1b12647544225ddb165f3a02f93cc766c8515df6 (patch) | |
tree | 2d47413da2c2091896f798501b3f7eaaf5fc5d24 | |
parent | bf9d8048c624217391df0aab710b0d248b01e4fc (diff) | |
download | bcm5719-llvm-1b12647544225ddb165f3a02f93cc766c8515df6.tar.gz bcm5719-llvm-1b12647544225ddb165f3a02f93cc766c8515df6.zip |
The feature this is testing did not work in the general case,
and has been removed.
llvm-svn: 48232
-rw-r--r-- | llvm/test/CodeGen/PowerPC/Frames-align.ll | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/test/CodeGen/PowerPC/Frames-align.ll b/llvm/test/CodeGen/PowerPC/Frames-align.ll deleted file mode 100644 index 21a934370b7..00000000000 --- a/llvm/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 -} |