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
73fa6486
Commit
73fa6486
authored
Oct 22, 2015
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
align codedump output for OP_RETURN
parent
48771a35
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/codedump.c
src/codedump.c
+3
-3
No files found.
src/codedump.c
View file @
73fa6486
...
...
@@ -240,11 +240,11 @@ codedump(mrb_state *mrb, mrb_irep *irep)
switch
(
GETARG_B
(
c
))
{
case
OP_R_NORMAL
:
case
OP_R_RETURN
:
printf
(
"
\t
return"
);
break
;
printf
(
"
\t
return
\t
"
);
break
;
case
OP_R_BREAK
:
printf
(
"
\t
break"
);
break
;
printf
(
"
\t
break
\t
"
);
break
;
default:
printf
(
"
\t
broken"
);
break
;
printf
(
"
\t
broken
\t
"
);
break
;
break
;
}
print_lv
(
mrb
,
irep
,
c
,
RA
);
...
...
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