aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Parse.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2018-02-16 16:32:41 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2018-02-16 16:32:41 +0100
commitfcc5b32267d22de13553c0f5fc61ae60f0723a50 (patch)
treefd9a1b9a7cb0385a3779390cd06c1ec1b0c0a88d /cparser/Parse.ml
parent8cd40f0bd7571ba4adf8b35234df88a0522d403d (diff)
downloadcompcert-kvx-fcc5b32267d22de13553c0f5fc61ae60f0723a50.tar.gz
compcert-kvx-fcc5b32267d22de13553c0f5fc61ae60f0723a50.zip
Renamed StructReturn to structPassing
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'