Skip to content

Commit

Permalink
Win64 finally blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Sep 24, 2012
1 parent 20c8523 commit 9ea2106
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/backend/cod3.c
Expand Up @@ -771,8 +771,12 @@ void outblkexitcode(block *bl, code*& c, int& anyspill, const char* sflsave, sym
#endif
if (config.flags2 & CFG2seh)
c = cat(c,nteh_unwind(0,toindex));
#if MARS && (TARGET_LINUX || TARGET_OSX || TARGET_FREEBSD || TARGET_OPENBSD || TARGET_SOLARIS)
else if (toindex + 1 <= fromindex)
#if MARS
else if (
#if TARGET_WINDOS
config.exe == EX_WIN64 &&
#endif
toindex + 1 <= fromindex)
{
//c = cat(c, linux_unwind(0, toindex));
block *bt;
Expand Down

0 comments on commit 9ea2106

Please sign in to comment.