diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-04-20 13:04:56 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-04-20 13:04:56 +0200 |
commit | 5f35e571fa3b73714d917564ed1a11184853cc6a (patch) | |
tree | 6df8c91c9321165a4db839e729fbb30f58966d67 /sapi/phpdbg/phpdbg.c | |
parent | 1a249bd6745131cc68f72b2cfc9b8ca789b221ee (diff) | |
download | php-git-5f35e571fa3b73714d917564ed1a11184853cc6a.tar.gz |
show opcode count
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index a93a062d2e..eb8369b86f 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -763,7 +763,6 @@ const opt_struct OPTIONS[] = { /* {{{ */ #endif {'x', 0, "xml output"}, {'p', 2, "show opcodes"}, - {'o', 0, "display opline addresses"}, {'h', 0, "help"}, {'V', 0, "version"}, {'-', 0, NULL} @@ -1214,10 +1213,6 @@ phpdbg_main: settings = (void *) 0x1; } break; - case 'o': - flags |= PHPDBG_PRINT_OPLINE_ADDR; - break; - case 'h': { sapi_startup(phpdbg); phpdbg->startup(phpdbg); |