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 8a6d359 commit 5eda904Copy full SHA for 5eda904
src/frontc/cabs2cil.ml
@@ -5975,15 +5975,15 @@ and doDecl (isglobal: bool) : A.definition -> chunk = function
5975
acc
5976
end else
5977
match spec_res with
5978
- | Some spec_res -> acc @@ SynthetizeLoc.doChunkTail (createLocal spec_res name)
5979
- | None -> acc @@ SynthetizeLoc.doChunkTail (createAutoLocal name)
+ | Some spec_res -> acc @@ createLocal spec_res name
+ | None -> acc @@ createAutoLocal name
5980
in
5981
let res = List.fold_left doOneDeclarator empty nl in
5982
(*
5983
ignore (E.log "after doDecl %a: res=%a\n"
5984
d_loc !currentLoc d_chunk res);
5985
*)
5986
- res
+ SynthetizeLoc.doChunkTail res
5987
5988
5989
0 commit comments