diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-09-22 17:21:15 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-10-16 17:23:57 +0200 |
commit | a5ce823283d36eda4788c55b0b9b645577473983 (patch) | |
tree | a6b2852be8c625e99d6feb717381ca7a0b62bf82 /erts/emulator/beam/erl_init.c | |
parent | 9c9878d6d4e99aba195177baef66067da0a2b797 (diff) | |
download | otp-a5ce823283d36eda4788c55b0b9b645577473983.tar.gz otp-a5ce823283d36eda4788c55b0b9b645577473983.tar.bz2 otp-a5ce823283d36eda4788c55b0b9b645577473983.zip |
erts: Fix SMP for ERTS_OPCODE_COUNTER_SUPPORT
Cleanup macro code.
Diffstat (limited to 'erts/emulator/beam/erl_init.c')
-rw-r--r-- | erts/emulator/beam/erl_init.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/erts/emulator/beam/erl_init.c b/erts/emulator/beam/erl_init.c index 88c4006934..890ef89cc1 100644 --- a/erts/emulator/beam/erl_init.c +++ b/erts/emulator/beam/erl_init.c @@ -161,9 +161,6 @@ int H_MIN_SIZE; /* The minimum heap grain */ int BIN_VH_MIN_SIZE; /* The minimum binary virtual*/ Uint32 erts_debug_flags; /* Debug flags. */ -#ifdef ERTS_OPCODE_COUNTER_SUPPORT -int count_instructions; -#endif int erts_backtrace_depth; /* How many functions to show in a backtrace * in error codes. */ @@ -1882,11 +1879,6 @@ erl_start(int argc, char **argv) if (argv[i][2] == 0) { /* -c: documented option */ erts_disable_tolerant_timeofday = 1; } -#ifdef ERTS_OPCODE_COUNTER_SUPPORT - else if (argv[i][2] == 'i') { /* -ci: undcoumented option*/ - count_instructions = 1; - } -#endif break; case 'W': arg = get_arg(argv[i]+2, argv[i+1], &i); |