merge
This commit is contained in:
commit
9fb2001658
2 changed files with 6 additions and 2 deletions
|
@ -507,8 +507,10 @@ dostkoff(void)
|
|||
if(p->as == ATEXT) {
|
||||
curtext = p;
|
||||
autoffset = p->to.offset;
|
||||
if(autoffset < 0)
|
||||
if(autoffset < 0) {
|
||||
autoffset = 0;
|
||||
p->to.offset = 0;
|
||||
}
|
||||
if(autoffset) {
|
||||
p = appendp(p);
|
||||
p->as = AADJSP;
|
||||
|
|
|
@ -492,8 +492,10 @@ dostkoff(void)
|
|||
if(p->as == ATEXT) {
|
||||
curtext = p;
|
||||
autoffset = p->to.offset;
|
||||
if(autoffset < 0)
|
||||
if(autoffset < 0) {
|
||||
autoffset = 0;
|
||||
p->to.offset = 0;
|
||||
}
|
||||
if(autoffset) {
|
||||
p = appendp(p);
|
||||
p->as = AADJSP;
|
||||
|
|
Loading…
Reference in a new issue