URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.c++/] [cttiadd1.cc] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
template<class T> T add(T v1, T v2); void add1() { char c; int i; float f; c = 'b'; i = 3; f = 6.5; c = add(c, c); i = add(i, i); f = add(f, f); }
Go to most recent revision | Compare with Previous | Blame | View Log