@@ -192,7 +192,6 @@ object (self)
192192 val mutable user_call_targets = 0
193193 val mutable user_structs = 0
194194 val mutable user_nonreturning = 0
195- val mutable user_maybe_nonreturning = 0
196195 val mutable user_classes = 0
197196 val mutable encodings = []
198197 val mutable inlined_functions = []
@@ -701,13 +700,6 @@ object (self)
701700 user_nonreturning < - List. length nrnode#getChildren
702701 end );
703702
704- (if hasc " maybe-non-returning-functions" then
705- let mnrnode = getc " maybe-non-returning-functions" in
706- begin
707- self#read_xml_user_maybe_nonreturning_functions mnrnode;
708- user_maybe_nonreturning < - List. length mnrnode#getChildren
709- end );
710-
711703 (if hasc " non-returning-calls" then
712704 let nrnode = getc " non-returning-calls" in
713705 begin
@@ -1465,22 +1457,6 @@ object (self)
14651457 chlog#add " user-declared non-returning function" (geta n)#toPretty in
14661458 fd#set_non_returning) (getcc " nr" )
14671459
1468- method private read_xml_user_maybe_nonreturning_functions
1469- (node :xml_element_int ) =
1470- let geta n =
1471- fail_tvalue
1472- (trerror_record
1473- (LBLOCK [
1474- STR " read_xml_user_maybe_nonreturning_functions: " ;
1475- STR (n#getAttribute " a" )]))
1476- (string_to_doubleword (n#getAttribute " a" )) in
1477- let getcc = node#getTaggedChildren in
1478- List. iter (fun n ->
1479- let fd = functions_data#add_function (geta n) in
1480- let _ =
1481- chlog#add " user-declared non-returning function" (geta n)#toPretty in
1482- fd#set_maybe_non_returning) (getcc " mnr" )
1483-
14841460 method private read_xml_nonreturning_calls (node :xml_element_int ) =
14851461 let geta n tag = geta_fail " read_xml_nonreturning_functions" n tag in
14861462 let getcc = node#getTaggedChildren in
0 commit comments