[Bug target/38902] __builtin_strcpy doesn't work with -fstack-protector

2009-01-18 Thread kees at outflux dot net
--- Comment #5 from kees at outflux dot net 2009-01-18 18:12 --- Created an attachment (id=17135) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=17135&action=view) multiple tests for the regression This contains a series of tests, none of which should fail. -- http://gcc.gnu.o

[Bug target/38902] __builtin_strcpy doesn't work with -fstack-protector

2009-01-18 Thread hjl dot tools at gmail dot com
--- Comment #4 from hjl dot tools at gmail dot com 2009-01-18 17:05 --- bash-3.2$ cat /tmp/x.c extern void abort (); int foo (const char *, const char *); void bar (void) { char buffer[1024]=""; __builtin_strcpy (buffer, "1234567890abcdefghijklmno"); if (foo (buffer, "1234567890abc

[Bug target/38902] __builtin_strcpy doesn't work with -fstack-protector

2009-01-18 Thread doko at ubuntu dot com
--- Comment #3 from doko at ubuntu dot com 2009-01-18 10:01 --- yes, I do see this failure again as well. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38902

[Bug target/38902] __builtin_strcpy doesn't work with -fstack-protector

2009-01-17 Thread hjl dot tools at gmail dot com
--- Comment #2 from hjl dot tools at gmail dot com 2009-01-18 01:43 --- bash-3.2$ cat /tmp/x.c extern void abort (); int foo (const char *, const char *); int main (void) { char buffer[1024]=""; __builtin_strcpy (buffer, "1234567890abcdefghijklmno"); if (foo (buffer, "1234567890a

[Bug target/38902] __builtin_strcpy doesn't work with -fstack-protector

2009-01-17 Thread hjl dot tools at gmail dot com
--- Comment #1 from hjl dot tools at gmail dot com 2009-01-18 01:41 --- bash-3.2$ cat /tmp/x.c extern void abort (); int foo (const char *, const char *); int main (void) { char buffer[1024]=""; __builtin_strcpy (buffer, "1234567890abcdefghijklmno"); if (foo (buffer, "1234567890a