Skip to content

Commit d00dee3

Browse files
author
Daniel Kroening
committed
comment
1 parent 7d78d58 commit d00dee3

File tree

1 file changed

+2
-1
lines changed
  • regression/cbmc/big-endian-array1

1 file changed

+2
-1
lines changed

regression/cbmc/big-endian-array1/main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ int main()
77
unsigned size;
88
__CPROVER_assume(size==1);
99

10-
array=malloc(size*sizeof(int)); // produce unbounded array
10+
// produce unbounded array that does not have byte granularity
11+
array=malloc(size*sizeof(int));
1112
array[0]=0x01020304;
1213

1314
int array0=array[0];

0 commit comments

Comments
 (0)