import gdb-1999-08-02 snapshot

This commit is contained in:
Jason Molenda
1999-08-02 23:48:37 +00:00
parent 30727aa6d1
commit a0b3c4fd32
88 changed files with 3213 additions and 630 deletions

View File

@ -0,0 +1,22 @@
template<class T> T add2(T v1, T v2)
{
T v3;
v3 = v1;
v3 += v2;
return v3;
}
void subr2()
{
char c;
int i;
float f;
c = 'b';
i = 3;
f = 6.5;
c = add2(c, c);
i = add2(i, i);
f = add2(f, f);
}