-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Spelling #6822
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spelling #6822
Changes from all commits
6a64a4f
7eca000
58a0438
58b184e
590e1c3
9b5ad50
739afdf
d016413
6fdcbb6
e2ee9e9
ac43b42
a4be4d9
c65093c
df6f26e
e29a441
a8201aa
8050e8c
eb2e230
2527176
580d53d
0472362
26ed0f1
5b01545
fffebe3
8c24114
490fbfd
9305f58
e628ebd
f65aa05
22e87e7
ee53447
fca2b96
3fc2e72
53e1c7f
73e6681
717033c
f155ae6
f371942
7c71205
559e06f
db5ed54
d00f948
45e04a9
3d106af
a77b070
2f7a7d2
cbde6ee
d218243
c1a9b39
7b36145
f1ed465
cb64769
ed03b8e
29d698e
2e0020a
e83f4c3
8093e37
d87b56e
0e977e3
6fb776b
550165e
754715b
14ab262
e12c2f7
3dc68ea
eb74dd6
c4708fb
3dcb9aa
3a9f02f
3b9084e
ed0c842
cf82436
51ab928
9c0d254
9b4fe49
697cc34
645a1da
8ce2597
05ef39f
6a789e3
09ac883
b2a3f68
9e4690f
7e13610
9a9f696
e3dc6ef
85ddbd4
7d11d26
8365d18
53bf7af
2350c03
56f0a9b
738bdab
09b1038
bf1c7a2
8b6f1c3
3bdfd2b
e3ff981
a6173fd
0d0184b
7ea5e8c
6bda88d
aa6549f
87f2ee9
1e82777
8a474f3
92a55cf
28093eb
d1bbcb1
289da0c
a012a14
5b400fa
8167dfe
1a80856
13d5531
cddd4c6
70bc9fe
1ed5ea5
469b067
fd74a7f
89c8a4a
8ae474a
148b9ac
ed225cb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -926,7 +926,7 @@ ZEND_API void zend_dump_op_array(const zend_op_array *op_array, uint32_t dump_fl | |
} | ||
} | ||
if (func_flags & ZEND_FUNC_IRREDUCIBLE) { | ||
fprintf(stderr, ", irreducable"); | ||
fprintf(stderr, ", irreducible"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hopefully debug, but to match the line above... |
||
} | ||
if (func_flags & ZEND_FUNC_NO_LOOPS) { | ||
fprintf(stderr, ", no_loops"); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,7 @@ zend_function *zend_optimizer_get_called_func( | |
uint32_t zend_optimizer_classify_function(zend_string *name, uint32_t num_args); | ||
void zend_optimizer_migrate_jump(zend_op_array *op_array, zend_op *new_opline, zend_op *opline); | ||
void zend_optimizer_shift_jump(zend_op_array *op_array, zend_op *opline, uint32_t *shiftlist); | ||
int sccp_optimize_op_array(zend_optimizer_ctx *ctx, zend_op_array *op_arrya, zend_ssa *ssa, zend_call_info **call_map); | ||
int sccp_optimize_op_array(zend_optimizer_ctx *ctx, zend_op_array *op_array, zend_ssa *ssa, zend_call_info **call_map); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Internal |
||
int dce_optimize_op_array(zend_op_array *op_array, zend_ssa *ssa, bool reorder_dtor_effects); | ||
int zend_ssa_escape_analysis(const zend_script *script, zend_op_array *op_array, zend_ssa *ssa); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1922,7 +1922,7 @@ ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int | |
zend_hash_add_new(Z_ARRVAL(stack_frame), ZSTR_KNOWN(ZEND_STR_LINE), &tmp); | ||
|
||
/* try to fetch args only if an FCALL was just made - elsewise we're in the middle of a function | ||
* and debug_baktrace() might have been called by the error_handler. in this case we don't | ||
* and debug_backtrace() might have been called by the error_handler. in this case we don't | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
* want to pop anything of the argument-stack */ | ||
} else { | ||
zend_execute_data *prev_call = skip; | ||
|
Uh oh!
There was an error while loading. Please reload this page.