diff options
| author | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-22 21:21:42 +0000 |
|---|---|---|
| committer | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-22 21:21:42 +0000 |
| commit | c830d825e860028a078321f3e39cfe4bb04e22c4 (patch) | |
| tree | ee83d8651cf9828fc24babec28ee37081b8a2f7f | |
| parent | e57e6445e7e30d842085e077681e4d08f62df60b (diff) | |
| download | gcc-c830d825e860028a078321f3e39cfe4bb04e22c4.tar.gz | |
PR target/5379
* gcc.dg/20020122-2.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49094 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/20020122-2.c | 41 |
2 files changed, 46 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6f5728d2d5c..17975c20558 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2002-01-22 Janis Johnson <janis187@us.ibm.com> + + PR target/5379 + * gcc.dg/20020122-2.c: New test. + 2002-01-22 Hans-Peter Nilsson <hp@axis.com> * gcc.dg/20020122-1.c: New test. diff --git a/gcc/testsuite/gcc.dg/20020122-2.c b/gcc/testsuite/gcc.dg/20020122-2.c new file mode 100644 index 00000000000..2115a22ad6a --- /dev/null +++ b/gcc/testsuite/gcc.dg/20020122-2.c @@ -0,0 +1,41 @@ +/* This test was supplied with PR target/5379. It caused the compiler + to get a segmentation fault. */ + +/* { dg-do compile } */ +/* { dg-options "-O2 -fprefetch-loop-arrays -w" } */ +/* { dg-options "-O2 -fprefetch-loop-arrays -march=athlon" { target i?86-*-* } } */ + +extern int access( char* ); +extern int a(); +char* foocp(); + +void +_KDE_IceGetPoValidAuthIndices (protocol_name, num_indices_ret, indices_ret) +const char *protocol_name; +int *num_indices_ret; +int *indices_ret; +{ + int auth_file; + char *filename; + int index_ret, i; + + if (!(filename = foocp ())) + return; + + if (access (filename)) + return; + + if (auth_file = access (filename)) + return; + + for (;;) + { + if (strcmp (protocol_name, protocol_name) == 0 ) + { + for (i = 0; i < *num_indices_ret; i++) + if (index_ret == indices_ret[i]) + break; + } + } +} + |
