summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/align.C14
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20000502-1.c17
3 files changed, 36 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index edeb5a33d9a..cbe09a0679a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-02 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.c-torture/compile/20000502-1.c: New test.
+ * g++.old-deja/g++.other/align.C: New test.
+
Sun Apr 23 14:41:33 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/20000422-1.c: New test.
diff --git a/gcc/testsuite/g++.old-deja/g++.other/align.C b/gcc/testsuite/g++.old-deja/g++.other/align.C
new file mode 100644
index 00000000000..4ac1d54ecf1
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.other/align.C
@@ -0,0 +1,14 @@
+// Build don't link:
+
+class bar {
+public:
+ bar() { rw = 0; }
+ static const bar baz;
+private:
+ unsigned char rw;
+};
+char buf[4096];
+void foo(char *uc)
+{
+ memcpy(buf,&bar::baz,sizeof(bar));
+}
diff --git a/gcc/testsuite/gcc.c-torture/compile/20000502-1.c b/gcc/testsuite/gcc.c-torture/compile/20000502-1.c
new file mode 100644
index 00000000000..fcf7899a159
--- /dev/null
+++ b/gcc/testsuite/gcc.c-torture/compile/20000502-1.c
@@ -0,0 +1,17 @@
+static int minimum(int a, int b)
+{
+ if(a < b)
+ return a;
+ else
+ return b;
+}
+static int a, b;
+static inline int foo(void)
+{
+ a = minimum (a, b);
+ return 0;
+}
+static int bar(void)
+{
+ return foo();
+}