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/] [g++.dg/] [graphite/] [pr39447.C] - Diff between revs 301 and 338

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 301 Rev 338
/* { dg-options "-O2 -fgraphite-identity" } */
/* { dg-options "-O2 -fgraphite-identity" } */
struct Point
struct Point
{
{
  int line, col;
  int line, col;
  Point( int l = -1, int c = 0 ) throw() : line( l ), col( c ) {}
  Point( int l = -1, int c = 0 ) throw() : line( l ), col( c ) {}
  bool operator==( const Point & p ) const throw()
  bool operator==( const Point & p ) const throw()
  { return ( line == p.line && col == p.col ); }
  { return ( line == p.line && col == p.col ); }
  bool operator<( const Point & p ) const throw()
  bool operator<( const Point & p ) const throw()
  { return ( line < p.line || ( line == p.line && col < p.col ) ); }
  { return ( line < p.line || ( line == p.line && col < p.col ) ); }
};
};
class Buffer
class Buffer
{
{
public:
public:
  int characters( const int line ) const throw();
  int characters( const int line ) const throw();
  int pgetc( Point & p ) const throw();
  int pgetc( Point & p ) const throw();
  Point eof() const throw() { return Point( 0, 0 ); }
  Point eof() const throw() { return Point( 0, 0 ); }
  bool pisvalid( const Point & p ) const throw()
  bool pisvalid( const Point & p ) const throw()
  { return ( ( p.col >= 0 && p.col < characters( p.line ) ) || p == eof() );
  { return ( ( p.col >= 0 && p.col < characters( p.line ) ) || p == eof() );
  }
  }
  bool save( Point p1 = Point(), Point p2 = Point() ) const;
  bool save( Point p1 = Point(), Point p2 = Point() ) const;
};
};
bool Buffer::save( Point p1, Point p2 ) const
bool Buffer::save( Point p1, Point p2 ) const
{
{
  if( !this->pisvalid( p1 ) ) p1 = eof();
  if( !this->pisvalid( p1 ) ) p1 = eof();
  if( !this->pisvalid( p2 ) ) p2 = eof();
  if( !this->pisvalid( p2 ) ) p2 = eof();
  for( Point p = p1; p < p2; ) { pgetc( p ); }
  for( Point p = p1; p < p2; ) { pgetc( p ); }
  return true;
  return true;
}
}
 
 

powered by: WebSVN 2.1.0

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