diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-04-16 17:25:59 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-04-16 17:25:59 +0200 |
commit | 69e0f3a87346a6238b65a00a08b1902821612b36 (patch) | |
tree | f75d07d8d7fe4dece40e8e5fe212de42cdc04104 /erts | |
parent | 7a20be2ac86dc6f65f20c20af044eaa07417fb2b (diff) | |
download | otp-69e0f3a87346a6238b65a00a08b1902821612b36.tar.gz otp-69e0f3a87346a6238b65a00a08b1902821612b36.tar.bz2 otp-69e0f3a87346a6238b65a00a08b1902821612b36.zip |
erts: Remove instruction_count command option
* We use compile directive icount instead
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/beam/erl_init.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/erts/emulator/beam/erl_init.c b/erts/emulator/beam/erl_init.c index 86d3416423..a4f1e0d7ee 100644 --- a/erts/emulator/beam/erl_init.c +++ b/erts/emulator/beam/erl_init.c @@ -1955,11 +1955,6 @@ erl_start(int argc, char **argv) goto time_correction_false; else if (sys_strcmp(argv[i]+2, "true") == 0) goto time_correction_true; -#ifdef ERTS_OPCODE_COUNTER_SUPPORT - else if (argv[i][2] == 'i') { /* -ci: undcoumented option*/ - count_instructions = 1; - } -#endif else if (argv[i][2] == '\0') { if (i + 1 >= argc) goto time_correction_false; |