Skip to content

Commit

Permalink
Remove some more jupiter references
Browse files Browse the repository at this point in the history
  • Loading branch information
yebblies committed Aug 28, 2015
1 parent 0b4ff1d commit bec0b30
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
11 changes: 4 additions & 7 deletions src/backend/cc.h
Expand Up @@ -592,14 +592,13 @@ enum BC {
BCcatch = 11, // C++ catch block
BCjump = 12, // Belem specifies (near) address to jump to
BC_try = 13, // SEH: first block of try-except or try-finally
// Jupiter, Mars: try-catch or try-finally
// Mars: try-catch or try-finally
BC_filter = 14, // SEH exception-filter (always exactly one block)
BC_finally = 15, // first block of SEH termination-handler,
// or finally block
BC_ret = 16, // last block of SEH termination-handler or finally block
BC_except = 17, // first block of SEH exception-handler
BCjcatch = 18, // first block of Jupiter or Mars catch-block
BCjplace = 19, // Jupiter: placeholder
BCjcatch = 18, // first block of Mars catch-block
BCMAX
};

Expand Down Expand Up @@ -662,10 +661,8 @@ typedef struct FUNC_S
#define Fnteh 0x08 // uses NT Structured EH
#define Fdoinline 0x40 // do inline walk
#define Foverridden 0x80 // ignore for overriding purposes
#if TARGET_LINUX || TARGET_OSX || TARGET_FREEBSD || TARGET_OPENBSD || TARGET_SOLARIS
#define Fnowrite 0x100 // SCinline should never output definition
#else
#define Fjmonitor 0x100 // Jupiter synchronized function
#if MARS && TARGET_WINDOS
#define Fjmonitor 0x100 // Mars synchronized function
#endif
#define Fnosideeff 0x200 // function has no side effects
#define F3badoparrow 0x400 // bad operator->()
Expand Down
2 changes: 1 addition & 1 deletion src/backend/code.h
Expand Up @@ -167,7 +167,7 @@ extern unsigned usednteh;
#define NTEHcpp (NTEHexcspec | NTEHcleanup | NTEHtry)
#define EHcleanup 0x20
#define EHtry 0x40
#define NTEHjmonitor 0x80 // uses Jupiter monitor
#define NTEHjmonitor 0x80 // uses Mars monitor
#define NTEHpassthru 0x100

/********************** Code Generator State ***************/
Expand Down
2 changes: 1 addition & 1 deletion src/backend/el.h
Expand Up @@ -79,7 +79,7 @@ struct elem
#define NFLdelcse 0x40 // this is not the generating CSE
#define NFLtouns 0x80 // relational operator was changed from signed to unsigned
#if MARS
unsigned char Ejty_; // original Jupiter/Mars type
unsigned char Ejty_; // original Mars type
#define Ejty _EU._EO.Ejty_
#endif
}_EO;
Expand Down
2 changes: 1 addition & 1 deletion src/backend/var.c
Expand Up @@ -49,7 +49,7 @@ linkage_t linkage;
int linkage_spec = 0; /* using the default */

/* Function types */
/* LINK_MAXDIM = C,C++,Pascal,FORTRAN,syscall,stdcall,Jupiter */
/* LINK_MAXDIM = C,C++,Pascal,FORTRAN,syscall,stdcall,Mars */
#if MEMMODELS == 1
tym_t functypetab[LINK_MAXDIM] =
{
Expand Down

0 comments on commit bec0b30

Please sign in to comment.