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

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [gold/] [testsuite/] [odr_violation1.cc] - Rev 143

Go to most recent revision | Compare with Previous | Blame | View Log

#include <algorithm>
#include "odr_header1.h"
 
class Ordering {
 public:
  bool operator()(int a, int b) {
    return a < b;
  }
};
 
void SortAscending(int array[], int size) {
  std::sort(array, array + size, Ordering());
}
 
extern "C" int OverriddenCFunction(int i) __attribute__ ((weak));
extern "C" int OverriddenCFunction(int i) {
  return i;
}
 
// Instantiate the Derived vtable, without optimization.
OdrBase* CreateOdrDerived1() {
  return new OdrDerived;
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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