File tree 2 files changed +6
-1
lines changed
regression/cbmc/trace_show_function_calls
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ int function_to_call(int a)
4
4
return a + local ;
5
5
}
6
6
7
+ int function_without_body (int p );
8
+
7
9
int main ()
8
10
{
9
11
int a ;
@@ -15,6 +17,7 @@ int main()
15
17
a = -2147483647 ;
16
18
a = function_to_call (a );
17
19
b = function_to_call (b );
20
+ a = function_without_body (123 );
18
21
19
22
__CPROVER_assert (0 , "" );
20
23
}
Original file line number Diff line number Diff line change 1
- CORE broken-smt-backend
1
+ KNOWNBUG broken-smt-backend
2
2
main.c
3
3
--trace --trace-show-function-calls
4
4
^EXIT=10$
5
5
^SIGNAL=0$
6
6
Function call: function_to_call\(-2147483647\) \(depth 2\)
7
7
Function return from function_to_call \(depth 1\)
8
8
Function call: function_to_call\(-2\) \(depth 2\)
9
+ Function call: function_without_body\(123\) \(depth 2\)
10
+ Function return from function_without_body \(depth 1\)
9
11
^VERIFICATION FAILED$
10
12
--
11
13
^warning: ignoring
You can’t perform that action at this time.
0 commit comments