mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 09:23:44 +00:00
tests/hard_coded/backend_external.m:
tests/hard_coded/backend_external_pred.m:
tests/hard_coded/c_write_string.m:
tests/hard_coded/ee_dummy.m:
tests/hard_coded/pragma_c_code.m:
tests/hard_coded/pragma_foreign_export.m:
tests/hard_coded/target_mlobjs.m:
tests/hard_coded/type_tables.m:
tests/submodules/sm_exp_bug.m:
Use don't-care variables to handle the I/O state in foreign procs.
Assigning the I/O state at the end of the foreign_proc body results
in spurious warnings about uninitialized variables from MSVC.
54 lines
1.5 KiB
Mathematica
54 lines
1.5 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% Modules compiled by rotd-2007-02-27 and before sometimes did not
|
|
% implicitly foreign_import themselves. This meant that procedures
|
|
% exported via a pragma foreign_export were not visible to foreign
|
|
% code in the same module. (This only showed up with the LLDS backend
|
|
% since the MLDS->C code generator always inserted the necessary foreign
|
|
% import regardless of whether it was present in the HLDS or not.)
|
|
|
|
:- module sm_exp_bug.
|
|
:- interface.
|
|
|
|
:- include_module sm_exp_bug.sm_exp_bug_helper_1.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
main(!IO) :-
|
|
call_foreign(!IO).
|
|
|
|
:- pred call_foreign(io::di, io::uo) is det.
|
|
|
|
:- pragma foreign_proc("C",
|
|
call_foreign(_IO0::di, _IO::uo),
|
|
[may_call_mercury, promise_pure],
|
|
"
|
|
WRITE_HELLO();
|
|
").
|
|
:- pragma foreign_proc("C#",
|
|
call_foreign(_IO0::di, _IO::uo),
|
|
[may_call_mercury, promise_pure],
|
|
"
|
|
WRITE_HELLO();
|
|
").
|
|
:- pragma foreign_proc("Java",
|
|
call_foreign(_IO0::di, _IO::uo),
|
|
[may_call_mercury, promise_pure],
|
|
"
|
|
WRITE_HELLO();
|
|
").
|
|
|
|
:- pred write_hello(io::di, io::uo) is det.
|
|
:- pragma foreign_export("C", write_hello(di, uo), "WRITE_HELLO").
|
|
:- pragma foreign_export("C#", write_hello(di, uo), "WRITE_HELLO").
|
|
:- pragma foreign_export("Java", write_hello(di, uo), "WRITE_HELLO").
|
|
|
|
write_hello(!IO) :-
|
|
io.write_string("Hello World!\n", !IO).
|