Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
874f828a
Unverified
Commit
874f828a
authored
4 years ago
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
4 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5313 from dearblue/diet-5272
Remove unnecessary `ci0` variables; ref #5272
parents
406159d4
d8244889
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
src/vm.c
src/vm.c
+2
-4
No files found.
src/vm.c
View file @
874f828a
...
...
@@ -1926,10 +1926,8 @@ RETRY_TRY_BLOCK:
}
if
(
mrb
->
exc
)
{
mrb_callinfo
*
ci0
;
L_RAISE:
ci
0
=
ci
=
mrb
->
c
->
ci
;
ci
=
mrb
->
c
->
ci
;
if
(
ci
==
mrb
->
c
->
cibase
)
{
ch
=
catch_handler_find
(
mrb
,
ci
,
pc
,
MRB_CATCH_FILTER_ALL
);
if
(
ch
==
NULL
)
goto
L_FTOP
;
...
...
@@ -1966,7 +1964,7 @@ RETRY_TRY_BLOCK:
if
(
ch
==
NULL
)
goto
L_STOP
;
if
(
FALSE
)
{
L_CATCH_TAGGED_BREAK:
/* from THROW_TAGGED_BREAK() or UNWIND_ENSURE() */
ci
=
ci0
=
mrb
->
c
->
ci
;
ci
=
mrb
->
c
->
ci
;
}
proc
=
ci
->
proc
;
irep
=
proc
->
body
.
irep
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment