Skip to content

Commit

Permalink
The changes to sqVirtualMachine.h need to be keyed off of
Browse files Browse the repository at this point in the history
SQUEAK_BUILTIN_PLUGIN, and the interpereters must be insulated from them.
  • Loading branch information
eliotmiranda committed Jan 5, 2021
1 parent 622ec55 commit a9c6482
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion platforms/Cross/vm/sqVirtualMachine.h
Expand Up @@ -402,7 +402,8 @@ typedef struct VirtualMachine {
#endif
} VirtualMachine;

# if defined(SQUEAK_INTERNAL_PLUGIN) || defined(FOR_SVM_C)
# if (defined(SQUEAK_INTERNAL_PLUGIN) || defined(FOR_SVM_C)) \
&& !defined(SQ_USE_GLOBAL_STRUCT) // Prevent the interpereter seeing these
/*** Function prototypes ***/

/* InterpreterProxy methodsFor: 'stack access' */
Expand Down

0 comments on commit a9c6482

Please sign in to comment.