back to 32 bit for now

This commit is contained in:
rsc 2004-06-11 12:52:08 +00:00
parent 9b24f92c56
commit 4f0073fec2
7 changed files with 43 additions and 48 deletions

View file

@ -323,11 +323,11 @@ dwarftosym(Fhdr *fp, Dwarf *d, DwarfSym *ds, Symbol *s, int infn)
}
static int
dwarfeval(Dwarf *d, Map *map, Regs *regs, ulong cfa, int rno, DwarfExpr e, uvlong *u)
dwarfeval(Dwarf *d, Map *map, Regs *regs, ulong cfa, int rno, DwarfExpr e, ulong *u)
{
int i;
u32int u4;
uvlong uu;
ulong uu;
switch(e.type){
case RuleUndef:
@ -400,7 +400,7 @@ _dwarfunwind(Fhdr *fhdr, Map *map, Regs *regs, ulong *next)
{
char *name;
int i, j;
uvlong cfa, pc, u;
ulong cfa, pc, u;
Dwarf *d;
DwarfExpr *e, epc, ecfa;