Skip to content

Commit

Permalink
Fix failure of check_all_arches on RISCV (ocaml-flambda#1300)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekdohibs authored Apr 12, 2023
1 parent 0e8fdbc commit c0e2850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ build_and_test_upstream: build_upstream
echo "Running testsuite sequentially"; \
make --no-print-directory all; \
fi
cd _build_upstream && $(MAKE) check_all_arches

.PHONY: coverage
coverage: boot-runtest
Expand Down
2 changes: 1 addition & 1 deletion ocaml/asmcomp/riscv/emit.mlp
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ let end_assembly() =
` .quad 0\n`;
(* Emit the frame descriptors *)
` {emit_string data_space}\n`; (* not rodata because relocations inside *)
let lbl = Compilenv.make_symbol (Some "frametable") in
let lbl = Cmm_helpers.make_symbol "frametable" in
declare_global_data lbl;
`{emit_symbol lbl}:\n`;
emit_frames
Expand Down

0 comments on commit c0e2850

Please sign in to comment.