aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Parse.ml
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Parse.ml')
-rw-r--r--cparser/Parse.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Parse.ml b/cparser/Parse.ml
index 8665e158..8143954b 100644
--- a/cparser/Parse.ml
+++ b/cparser/Parse.ml
@@ -19,7 +19,7 @@ module CharSet = Set.Make(struct type t = char let compare = compare end)
let transform_program t p name =
let run_pass pass flag p = if CharSet.mem flag t then pass p else p in
- let p1 = (run_pass StructReturn.program 's'
+ let p1 = (run_pass StructPassing.program 's'
(run_pass PackedStructs.program 'p'
(run_pass Unblock.program 'b'
(run_pass Bitfields.program 'f'