diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-02 15:17:08 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-02 15:17:08 +0000 |
commit | 9805577e2777772efe3a3b2a9b163fedcd0127b9 (patch) | |
tree | b6634ff0029575bc74c5b32add064b1a137dcd03 /gcc | |
parent | bc6f4c7984243faad2df927e0f408493663766b2 (diff) | |
download | gcc-9805577e2777772efe3a3b2a9b163fedcd0127b9.tar.gz |
* gcc.c-torture/compile/20000502-1.c: New test.
* g++.old-deja/g++.other/align.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33610 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/align.C | 14 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/20000502-1.c | 17 |
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(); +} |