Skip to content

Commit cfad717

Browse files
Renamed initialize_goto_model files
1 parent 969eaa6 commit cfad717

7 files changed

+9
-7
lines changed

src/goto-analyzer/goto_analyzer_parse_options.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Author: Daniel Kroening, [email protected]
1616
#include <java_bytecode/java_bytecode_language.h>
1717
#include <jsil/jsil_language.h>
1818

19+
#include <goto-programs/initialize_goto_model.h>
1920
#include <goto-programs/set_properties.h>
2021
#include <goto-programs/remove_function_pointers.h>
2122
#include <goto-programs/remove_virtual_functions.h>

src/goto-analyzer/goto_analyzer_parse_options.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Author: Daniel Kroening, [email protected]
1414

1515
#include <langapi/language_ui.h>
1616

17-
#include <goto-programs/get_goto_model.h>
17+
#include <goto-programs/goto_model.h>
1818
#include <goto-programs/show_goto_functions.h>
1919

2020
#include <analyses/goto_check.h>

src/goto-programs/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SRC = basic_blocks.cpp \
66
destructor.cpp \
77
elf_reader.cpp \
88
format_strings.cpp \
9-
get_goto_model.cpp \
9+
initialize_goto_model.cpp \
1010
goto_asm.cpp \
1111
goto_clean_expr.cpp \
1212
goto_convert.cpp \

src/goto-programs/get_goto_model.cpp renamed to src/goto-programs/initialize_goto_model.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Author: Daniel Kroening, [email protected]
1818

1919
#include "goto_convert_functions.h"
2020
#include "read_goto_binary.h"
21-
#include "get_goto_model.h"
21+
#include "initialize_goto_model.h"
2222

2323
/*******************************************************************\
2424

src/goto-programs/get_goto_model.h renamed to src/goto-programs/initialize_goto_model.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Author: Daniel Kroening, [email protected]
66
77
\*******************************************************************/
88

9-
#ifndef CPROVER_GOTO_PROGRAMS_GET_GOTO_MODEL_H
10-
#define CPROVER_GOTO_PROGRAMS_GET_GOTO_MODEL_H
9+
#ifndef CPROVER_GOTO_PROGRAMS_INITIALIZE_GOTO_MODEL_H
10+
#define CPROVER_GOTO_PROGRAMS_INITIALIZE_GOTO_MODEL_H
1111

1212
#include <util/message.h>
1313
#include <util/cmdline.h>
@@ -19,4 +19,4 @@ bool initialize_goto_model(
1919
const cmdlinet &cmdline,
2020
message_handlert &message_handler);
2121

22-
#endif // CPROVER_GOTO_PROGRAMS_GET_GOTO_MODEL_H
22+
#endif // CPROVER_GOTO_PROGRAMS_INITIALIZE_GOTO_MODEL_H

src/symex/symex_parse_options.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Author: Daniel Kroening, [email protected]
2121
#include <cpp/cpp_language.h>
2222
#include <java_bytecode/java_bytecode_language.h>
2323

24+
#include <goto-programs/initialize_goto_model.h>
2425
#include <goto-programs/goto_convert_functions.h>
2526
#include <goto-programs/show_properties.h>
2627
#include <goto-programs/set_properties.h>

src/symex/symex_parse_options.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Author: Daniel Kroening, [email protected]
1212
#include <util/ui_message.h>
1313
#include <util/parse_options.h>
1414

15-
#include <goto-programs/get_goto_model.h>
15+
#include <goto-programs/goto_model.h>
1616
#include <goto-programs/show_goto_functions.h>
1717

1818
#include <langapi/language_ui.h>

0 commit comments

Comments
 (0)