OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr20527-1.c] - Diff between revs 297 and 338

Only display areas with differences | Details | Blame | View Log

Rev 297 Rev 338
/* PR rtl-optimization/20527
/* PR rtl-optimization/20527
   Mishandled postincrement.  This test-case is derived from the
   Mishandled postincrement.  This test-case is derived from the
   function BZ2_hbCreateDecodeTables in the file huffman.c from
   function BZ2_hbCreateDecodeTables in the file huffman.c from
   bzip2-1.0.2, hence requiring the following disclaimer copied here:  */
   bzip2-1.0.2, hence requiring the following disclaimer copied here:  */
 
 
/*--
/*--
  This file is a part of bzip2 and/or libbzip2, a program and
  This file is a part of bzip2 and/or libbzip2, a program and
  library for lossless, block-sorting data compression.
  library for lossless, block-sorting data compression.
 
 
  Copyright (C) 1996-2002 Julian R Seward.  All rights reserved.
  Copyright (C) 1996-2002 Julian R Seward.  All rights reserved.
 
 
  Redistribution and use in source and binary forms, with or without
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  modification, are permitted provided that the following conditions
  are met:
  are met:
 
 
  1. Redistributions of source code must retain the above copyright
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
     notice, this list of conditions and the following disclaimer.
 
 
  2. The origin of this software must not be misrepresented; you must
  2. The origin of this software must not be misrepresented; you must
     not claim that you wrote the original software.  If you use this
     not claim that you wrote the original software.  If you use this
     software in a product, an acknowledgment in the product
     software in a product, an acknowledgment in the product
     documentation would be appreciated but is not required.
     documentation would be appreciated but is not required.
 
 
  3. Altered source versions must be plainly marked as such, and must
  3. Altered source versions must be plainly marked as such, and must
     not be misrepresented as being the original software.
     not be misrepresented as being the original software.
 
 
  4. The name of the author may not be used to endorse or promote
  4. The name of the author may not be used to endorse or promote
     products derived from this software without specific prior written
     products derived from this software without specific prior written
     permission.
     permission.
 
 
  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 
  Julian Seward, Cambridge, UK.
  Julian Seward, Cambridge, UK.
  jseward@acm.org
  jseward@acm.org
  bzip2/libbzip2 version 1.0 of 21 March 2000
  bzip2/libbzip2 version 1.0 of 21 March 2000
 
 
  This program is based on (at least) the work of:
  This program is based on (at least) the work of:
     Mike Burrows
     Mike Burrows
     David Wheeler
     David Wheeler
     Peter Fenwick
     Peter Fenwick
     Alistair Moffat
     Alistair Moffat
     Radford Neal
     Radford Neal
     Ian H. Witten
     Ian H. Witten
     Robert Sedgewick
     Robert Sedgewick
     Jon L. Bentley
     Jon L. Bentley
 
 
  For more information on these sources, see the manual.
  For more information on these sources, see the manual.
--*/
--*/
 
 
void f (long *limit, long *base, long minLen, long maxLen) __attribute__ ((__noinline__));
void f (long *limit, long *base, long minLen, long maxLen) __attribute__ ((__noinline__));
void f (long *limit, long *base, long minLen, long maxLen)
void f (long *limit, long *base, long minLen, long maxLen)
{
{
  long i;
  long i;
  long vec;
  long vec;
  vec = 0;
  vec = 0;
  for (i = minLen; i <= maxLen; i++) {
  for (i = minLen; i <= maxLen; i++) {
    vec += (base[i+1] - base[i]);
    vec += (base[i+1] - base[i]);
    limit[i] = vec-1;
    limit[i] = vec-1;
  }
  }
}
}
extern void abort (void);
extern void abort (void);
extern void exit (int);
extern void exit (int);
long b[] = {1, 5, 11, 23};
long b[] = {1, 5, 11, 23};
int main (void)
int main (void)
{
{
  long l[3];
  long l[3];
  f (l, b, 0, 2);
  f (l, b, 0, 2);
  if (l[0] != 3 || l[1] != 9 || l[2] != 21)
  if (l[0] != 3 || l[1] != 9 || l[2] != 21)
    abort ();
    abort ();
  exit (0);
  exit (0);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.