Skip to content

Commit

Permalink
put a few comments into MVMJitCode
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Apr 9, 2017
1 parent f2f92be commit 17bf9b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/jit/compile.h
Expand Up @@ -11,8 +11,8 @@ struct MVMJitCode {
* runtime (because we need a second dereference to figure the
* labels out), but very simple for me now, and super-easy to
* optimise at a later date */
MVMint32 num_labels;
MVMint32 num_bbs;
MVMint32 num_labels; /* for labels */
MVMint32 num_bbs; /* for bb_labels */
void **labels;
MVMint32 *bb_labels;

Expand All @@ -21,7 +21,7 @@ struct MVMJitCode {
MVMJitDeopt *deopts;
MVMJitInline *inlines;

MVMint32 num_handlers;
MVMint32 num_handlers; /* for handlers */
MVMint32 seq_nr;
MVMJitHandler *handlers;
};
Expand Down

0 comments on commit 17bf9b5

Please sign in to comment.