comparison dmd/backend/iasm.d @ 177:1475fd394c9e

bug fixes
author korDen
date Sun, 10 Oct 2010 10:38:55 +0400
parents fa9a71a9f5a8
children 190ba98276b3
comparison
equal deleted inserted replaced
176:fa9a71a9f5a8 177:1475fd394c9e
4394 ; 4394 ;
4395 } else 4395 } else
4396 o1.ptype = d.type.toBasetype(); 4396 o1.ptype = d.type.toBasetype();
4397 } 4397 }
4398 4398
4399 enum REG[63] regtab = 4399 __gshared REG[63] regtab =
4400 [ 4400 [
4401 {"AL", _AL, _r8 | _al,}, 4401 {"AL", _AL, _r8 | _al,},
4402 {"AH", _AH, _r8,}, 4402 {"AH", _AH, _r8,},
4403 {"AX", _AX, _r16 | _ax,}, 4403 {"AX", _AX, _r16 | _ax,},
4404 {"EAX", _EAX, _r32 | _eax,}, 4404 {"EAX", _EAX, _r32 | _eax,},