Skip to content

Commit c9e46ae

Browse files
committed
Temporarily remove new UNREACHABLE statements
These really should be unreachable, but some company code needs to be changed for this first. A ticket number has been added as a reminder.
1 parent 03e3877 commit c9e46ae

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/goto-symex/symex_builtin_functions.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,8 @@ void goto_symext::symex_fkt(
505505
statet &,
506506
const code_function_callt &)
507507
{
508-
UNREACHABLE;
508+
// TODO: uncomment this line when TG-4667 is done
509+
// UNREACHABLE;
509510
#if 0
510511
exprt new_fc(ID_function, fc.type());
511512

src/goto-symex/symex_catch.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Author: Daniel Kroening, [email protected]
1313

1414
void goto_symext::symex_catch(statet &)
1515
{
16-
UNREACHABLE;
16+
// TODO: uncomment this line when TG-4667 is done
17+
// UNREACHABLE;
1718
// there are two variants: 'push' and 'pop'
1819

1920
#if 0

0 commit comments

Comments
 (0)