import gdb-1999-07-19 snapshot

This commit is contained in:
Jason Molenda
1999-07-19 23:30:11 +00:00
parent dc9e099fc0
commit adf40b2e16
46 changed files with 2656 additions and 1071 deletions

View File

@@ -97,7 +97,9 @@ int main ()
v_unsigned_int_pointer = v_double_pointer;
v_unsigned_int_pointer = v_unsigned_int;*/
more_code ();
return 0;
}
@@ -172,5 +174,49 @@ void dummy()
}
void marker1 ()
{
}
int more_code()
{
char C, *pC, **ppC, ***pppC, ****ppppC, *****pppppC, ******ppppppC;
unsigned char UC, *pUC;
short S, *pS;
unsigned short US, *pUS;
int I, *pI;
unsigned int UI, *pUI;
long L, *pL;
unsigned long UL, *pUL;
float F, *pF;
double D, *pD;
C = 'A';
UC = 21;
S = -14;
US = 7;
I = 102;
UI = 1002;
L = -234;
UL = 234;
F = 1.25E10;
D = -1.375E-123;
pC = &C;
ppC = &pC;
pppC = &ppC;
ppppC = &pppC;
pppppC = &ppppC;
ppppppC = &pppppC;
pUC = &UC;
pS = &S;
pUS = &US;
pI = &I;
pUI = &UI;
pL = &L;
pUL = &UL;
pF = &F;
pD = &D;
marker1();
return 0;
}