Skip to content

Commit

Permalink
Rename return symbol to return'
Browse files Browse the repository at this point in the history
As a follow up to diffblue#3767 and to keep naming consistency between C and
Java.
  • Loading branch information
Joel Allred committed Jan 29, 2019
1 parent 0ebe5f4 commit ac0075f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a
2 changes: 1 addition & 1 deletion jbmc/src/java_bytecode/java_entry_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ bool generate_java_start_function(
return_symbol.mode=ID_java;
return_symbol.is_static_lifetime=false;
return_symbol.name=JAVA_ENTRY_POINT_RETURN_SYMBOL;
return_symbol.base_name="return";
return_symbol.base_name = "return'";
return_symbol.type = to_java_method_type(symbol.type).return_type();

symbol_table.add(return_symbol);
Expand Down

0 comments on commit ac0075f

Please sign in to comment.