Commit 753e6cf1 by Jakub Jelinek Committed by Jakub Jelinek

20000502-1.c: New test.

	* gcc.c-torture/compile/20000502-1.c: New test.
	* g++.old-deja/g++.other/align.C: New test.

From-SVN: r33610
parent 32adf8e6
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.
......
// 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));
}
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();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment