File tree 4 files changed +0
-12
lines changed
4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ OBJ += ../big-int/big-int$(LIBEXT) \
24
24
../linking/linking$(LIBEXT ) \
25
25
../ansi-c/ansi-c$(LIBEXT ) \
26
26
../cpp/cpp$(LIBEXT ) \
27
- ../java_bytecode/java_bytecode$(LIBEXT ) \
28
27
../xmllang/xmllang$(LIBEXT ) \
29
28
../assembler/assembler$(LIBEXT ) \
30
29
../langapi/langapi$(LIBEXT ) \
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ Author: CM Wintersteiger
15
15
16
16
#include < ansi-c/ansi_c_language.h>
17
17
#include < cpp/cpp_language.h>
18
- #include < java_bytecode/java_bytecode_language.h>
19
18
#include < jsil/jsil_language.h>
20
19
21
20
#ifdef HAVE_SPECC
@@ -26,7 +25,6 @@ void goto_cc_modet::register_languages()
26
25
{
27
26
register_language (new_ansi_c_language);
28
27
register_language (new_cpp_language);
29
- register_language (new_java_bytecode_language);
30
28
register_language (new_jsil_language);
31
29
32
30
#ifdef HAVE_SPECC
Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ SRC = accelerate/accelerate.cpp \
75
75
76
76
OBJ += ../ansi-c/ansi-c$(LIBEXT ) \
77
77
../cpp/cpp$(LIBEXT ) \
78
- ../java_bytecode/java_bytecode$(LIBEXT ) \
79
78
../linking/linking$(LIBEXT ) \
80
79
../big-int/big-int$(LIBEXT ) \
81
80
../goto-programs/goto-programs$(LIBEXT ) \
Original file line number Diff line number Diff line change 49
49
#include < pointer-analysis/add_failed_symbols.h>
50
50
#include < pointer-analysis/show_value_sets.h>
51
51
52
- #include < java_bytecode/remove_exceptions.h>
53
- #include < java_bytecode/remove_instanceof.h>
54
-
55
52
#include < analyses/natural_loops.h>
56
53
#include < analyses/global_may_alias.h>
57
54
#include < analyses/local_bitvector_analysis.h>
@@ -841,11 +838,6 @@ void goto_instrument_parse_optionst::do_indirect_call_and_rtti_removal(
841
838
cmdline.isset (" pointer-check" ));
842
839
status () << " Virtual function removal" << eom;
843
840
remove_virtual_functions (goto_model);
844
- status () << " Catch and throw removal" << eom;
845
- // This introduces instanceof, so order is important:
846
- remove_exceptions (goto_model);
847
- status () << " Java instanceof removal" << eom;
848
- remove_instanceof (goto_model);
849
841
}
850
842
851
843
// / Remove function pointers that can be resolved by analysing const variables
You can’t perform that action at this time.
0 commit comments