aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-05-15 22:23:54 +0000
committerDale Johannesen <dalej@apple.com>2008-05-15 22:23:54 +0000
commit6ac88662eee6dc4c14eaa0d89e96e9ef7a86fc4b (patch)
treebc62becb8788011d502341417c8259d3c30f55a9
parent90bcc79978b9599beba2b3faa13b3754b7b1e0ec (diff)
downloadexternal_llvm-6ac88662eee6dc4c14eaa0d89e96e9ef7a86fc4b.zip
external_llvm-6ac88662eee6dc4c14eaa0d89e96e9ef7a86fc4b.tar.gz
external_llvm-6ac88662eee6dc4c14eaa0d89e96e9ef7a86fc4b.tar.bz2
Remove the S92 code, which really has nothing to do
with what the test is testing; makes it pass again on ppc32. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51167 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/C++Frontend/2008-02-13-sret.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/C++Frontend/2008-02-13-sret.cpp b/test/C++Frontend/2008-02-13-sret.cpp
index 15b4a99..15bfa2d 100644
--- a/test/C++Frontend/2008-02-13-sret.cpp
+++ b/test/C++Frontend/2008-02-13-sret.cpp
@@ -6,13 +6,6 @@
typedef __builtin_va_list va_list;
typedef unsigned long size_t;
void *memset(void *, int, size_t);
-struct S92 { int a:14; } ;
- extern struct S92 s92;
-
- struct S92 check92 () { struct S92 ret;
- memset (&ret, 0, sizeof (ret));
- ret.a = s92.a;
- return ret; }
struct S93 { __attribute__((aligned (8))) void * a; } ;
extern struct S93 s93;