Skip to content

Commit

Permalink
merge D2 pull #1578
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Jan 29, 2013
1 parent 067ee46 commit b48429e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/backend/elfobj.c
Expand Up @@ -3260,10 +3260,9 @@ static void obj_rtinit()
off += 3;
}
else
{ // mov EAX, DSO*
buf->writeByte(0x8B);
buf->writeByte(modregrm(3,AX,SP));
off += 2;
{ // push DSO*
buf->writeByte(0x50 + SP);
off += 1;
}

#if REQUIRE_DSO_REGISTRY
Expand Down

0 comments on commit b48429e

Please sign in to comment.