diff options
Diffstat (limited to 'erts/emulator/hipe/hipe_native_bif.c')
| -rw-r--r-- | erts/emulator/hipe/hipe_native_bif.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/erts/emulator/hipe/hipe_native_bif.c b/erts/emulator/hipe/hipe_native_bif.c index 7d343dd91e..7e8632b50d 100644 --- a/erts/emulator/hipe/hipe_native_bif.c +++ b/erts/emulator/hipe/hipe_native_bif.c @@ -330,8 +330,6 @@ char *hipe_bs_allocate(int len)      Binary *bptr;      bptr = erts_bin_nrml_alloc(len); -    bptr->flags = 0; -    bptr->orig_size = len;      erts_smp_atomic_init_nob(&bptr->refc, 1);      return bptr->orig_bytes;  } @@ -341,7 +339,6 @@ Binary *hipe_bs_reallocate(Binary* oldbptr, int newsize)      Binary *bptr;      bptr = erts_bin_realloc(oldbptr, newsize); -    bptr->orig_size = newsize;      return bptr;  }  | 
