Skip to content

Fix failure of check_all_arches on RISCV #1300

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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