We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744c6f3 commit 30a8a70Copy full SHA for 30a8a70
regression/cbmc/trace_show_function_calls/main.c
@@ -1,22 +1,20 @@
1
int function_to_call(int a)
2
{
3
- int local = 1;
4
- return a+local;
+ int local = 1;
+ return a + local;
5
}
6
7
-
8
int main()
9
10
- int a;
11
- unsigned int b;
12
- a = 0;
13
- a = -100;
14
- a = 2147483647;
15
- b = a*2;
16
- a = -2147483647;
17
- a = function_to_call(a);
18
- b = function_to_call(b);
19
20
- __CPROVER_assert(0,"");
+ int a;
+ unsigned int b;
+ a = 0;
+ a = -100;
+ a = 2147483647;
+ b = a * 2;
+ a = -2147483647;
+ a = function_to_call(a);
+ b = function_to_call(b);
21
+ __CPROVER_assert(0, "");
22
0 commit comments