summaryrefslogtreecommitdiff
path: root/testsuite/tests/asmcomp/parsecmm.mly
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/asmcomp/parsecmm.mly')
-rw-r--r--testsuite/tests/asmcomp/parsecmm.mly4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/asmcomp/parsecmm.mly b/testsuite/tests/asmcomp/parsecmm.mly
index 87db7a5fea..c19adf1c3d 100644
--- a/testsuite/tests/asmcomp/parsecmm.mly
+++ b/testsuite/tests/asmcomp/parsecmm.mly
@@ -149,7 +149,8 @@ phrase:
fundecl:
LPAREN FUNCTION STRING LPAREN params RPAREN sequence RPAREN
{ List.iter (fun (id, ty) -> unbind_ident id) $5;
- {fun_name = $3; fun_args = $5; fun_body = $7; fun_fast = true} }
+ {fun_name = $3; fun_args = $5; fun_body = $7; fun_fast = true;
+ fun_dbg = Debuginfo.none} }
;
params:
oneparam params { $1 :: $2 }
@@ -324,4 +325,3 @@ dataitem:
| SKIP INTCONST { Cskip $2 }
| ALIGN INTCONST { Calign $2 }
;
-