Skip to content

Commit a34c584

Browse files
author
Vojtěch Forejt
authored
Merge pull request #4633 from forejtv/forejtv/concat-int
Remove unused int concatenation irep_id
2 parents fd79fe0 + 73275b0 commit a34c584

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

jbmc/src/java_bytecode/java_string_library_preprocess.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -1750,9 +1750,6 @@ void java_string_library_preprocesst::initialize_conversion_table()
17501750
cprover_equivalent_to_java_assign_and_return_function
17511751
["java::java.lang.StringBuffer.append:(F)Ljava/lang/StringBuffer;"]=
17521752
ID_cprover_string_concat_float_func;
1753-
cprover_equivalent_to_java_assign_and_return_function
1754-
["java::java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;"]=
1755-
ID_cprover_string_concat_int_func;
17561753
cprover_equivalent_to_java_assign_and_return_function
17571754
["java::java.lang.StringBuffer.append:(J)Ljava/lang/StringBuffer;"]=
17581755
ID_cprover_string_concat_long_func;

src/util/irep_ids.def

-1
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,6 @@ IREP_ID_ONE(cprover_string_code_point_count_func)
594594
IREP_ID_ONE(cprover_string_offset_by_code_point_func)
595595
IREP_ID_ONE(cprover_string_compare_to_func)
596596
IREP_ID_ONE(cprover_string_concat_func)
597-
IREP_ID_ONE(cprover_string_concat_int_func)
598597
IREP_ID_ONE(cprover_string_concat_long_func)
599598
IREP_ID_ONE(cprover_string_concat_char_func)
600599
IREP_ID_ONE(cprover_string_concat_double_func)

0 commit comments

Comments
 (0)