File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -438,6 +438,25 @@ exprt flatten_byte_update(
438
438
439
439
/* ******************************************************************\
440
440
441
+ Function: flatten_byte_update
442
+
443
+ Inputs:
444
+
445
+ Outputs:
446
+
447
+ Purpose:
448
+
449
+ \*******************************************************************/
450
+
451
+ exprt flatten_byte_update (
452
+ const byte_update_exprt &src,
453
+ const namespacet &ns)
454
+ {
455
+ return flatten_byte_update (src, ns, false );
456
+ }
457
+
458
+ /* ******************************************************************\
459
+
441
460
Function: has_byte_operators
442
461
443
462
Inputs:
@@ -474,7 +493,9 @@ Function: flatten_byte_operators
474
493
475
494
\*******************************************************************/
476
495
477
- exprt flatten_byte_operators (const exprt &src, const namespacet &ns)
496
+ exprt flatten_byte_operators (
497
+ const exprt &src,
498
+ const namespacet &ns)
478
499
{
479
500
exprt tmp=src;
480
501
Original file line number Diff line number Diff line change @@ -20,10 +20,11 @@ exprt flatten_byte_extract(
20
20
21
21
exprt flatten_byte_update (
22
22
const byte_update_exprt &src,
23
- const namespacet &ns,
24
- bool negative_offset=false );
23
+ const namespacet &ns);
25
24
26
- exprt flatten_byte_operators (const exprt &src, const namespacet &ns);
25
+ exprt flatten_byte_operators (
26
+ const exprt &src,
27
+ const namespacet &ns);
27
28
28
29
bool has_byte_operator (const exprt &src);
29
30
You can’t perform that action at this time.
0 commit comments