aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Lexer.mll
diff options
context:
space:
mode:
authorBernhard Schommer <bschommer@users.noreply.github.com>2015-11-12 17:16:36 +0100
committerBernhard Schommer <bschommer@users.noreply.github.com>2015-11-12 17:16:36 +0100
commit9054efbd25eedd5627b9e6e62bf1204e5fa0ae94 (patch)
treeade38b83786c932601753e5a7e09de04020670fe /cparser/Lexer.mll
parent8c1b59808e9ee9888a846de2e3ff111628863f28 (diff)
parent05a27df3423dfddd9e48abfba019cf26da5ce4a5 (diff)
downloadcompcert-kvx-9054efbd25eedd5627b9e6e62bf1204e5fa0ae94.tar.gz
compcert-kvx-9054efbd25eedd5627b9e6e62bf1204e5fa0ae94.zip
Merge pull request #68 from fpottier/cut
Fix in cparser/GNUmakefile.
Diffstat (limited to 'cparser/Lexer.mll')
-rw-r--r--cparser/Lexer.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Lexer.mll b/cparser/Lexer.mll
index 23d8ab8d..17c4528c 100644
--- a/cparser/Lexer.mll
+++ b/cparser/Lexer.mll
@@ -470,7 +470,7 @@ and singleline_comment = parse
let lexbuf = Lexing.from_string text in
lexbuf.lex_curr_p <- {lexbuf.lex_curr_p with pos_fname = filename; pos_lnum = 1};
let module I = Pre_parser.MenhirInterpreter in
- let checkpoint = Pre_parser.Incremental.translation_unit_file()
+ let checkpoint = Pre_parser.Incremental.translation_unit_file lexbuf.lex_curr_p
and supplier = I.lexer_lexbuf_to_supplier lexer lexbuf
and succeed () = ()
and fail checkpoint =