Rename pragma_c_gen.m to foreign_proc_gen.m.

compiler/foreign_proc_gen.m:
    As above.

compiler/proc_gen.m:
    Conform to the rename, and delete comments that related to code
    that was moved to another module ages ago.

compiler/code_gen.m:
compiler/ll_backend.m:
compiler/llds_out_instr.m:
compiler/notes/compiler_design.html:
compiler/prog_data_foreign.m:
    Conform to the rename.
This commit is contained in:
Zoltan Somogyi
2025-09-16 04:40:12 +10:00
parent 847f30b227
commit da4a3d03e2
7 changed files with 14 additions and 27 deletions

View File

@@ -17,8 +17,8 @@
% for commits by commit_gen, for if-then-elses and negations by ite_gen,
% for switches by switch_gen and its subsidiary modules, for disjunctions
% by disj_gen, for parallel conjunctions by par_conj_gen, and for foreign_procs
% by pragma_c_gen. The only goals handled directly by code_gen are sequential
% conjunctions.
% by foreign_proc_gen. The only goals handled directly by code_gen
% are sequential conjunctions.
%
%---------------------------------------------------------------------------%
@@ -54,10 +54,10 @@
:- import_module ll_backend.call_gen.
:- import_module ll_backend.commit_gen.
:- import_module ll_backend.disj_gen.
:- import_module ll_backend.foreign_proc_gen.
:- import_module ll_backend.ite_gen.
:- import_module ll_backend.opt_debug.
:- import_module ll_backend.par_conj_gen.
:- import_module ll_backend.pragma_c_gen.
:- import_module ll_backend.switch_gen.
:- import_module ll_backend.unify_gen.
:- import_module ll_backend.unify_gen_construct.