Skip to content

Commit

Permalink
mach related segmented changes (does mach even support segmented arch…
Browse files Browse the repository at this point in the history
…itectures?)
  • Loading branch information
braddr committed Oct 12, 2011
1 parent f29cc46 commit 5d6daaa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/backend/machobj.c
Expand Up @@ -1836,7 +1836,11 @@ int obj_comdef(Symbol *s,targ_size_t size,targ_size_t count)
symbol_debug(s);

// can't have code or thread local comdef's
assert(!(s->ty() & (mTYcs | mTYthread)));
assert(!(s->ty() & (
#if TARGET_SEGMENTED
mTYcs |
#endif
mTYthread)));

struct Comdef comdef;
comdef.sym = s;
Expand Down

0 comments on commit 5d6daaa

Please sign in to comment.