mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-14 21:35:49 +00:00
compiler/*.m:
Module qualify the end_module declarations. In some cases, add them.
compiler/table_gen.m:
Remove an unused predicate, and inline another in the only place
where it is used.
compiler/add_pragma.m:
Give some predicates more meaningful names.
27 lines
1.0 KiB
Mathematica
27 lines
1.0 KiB
Mathematica
%----------------------------------------------------------------------------%
|
|
% vim: ft=mercury ts=4 sw=4 et
|
|
%----------------------------------------------------------------------------%
|
|
% Copyright (C) 1996-2009 The University of Melbourne.
|
|
% This file may only be copied under the terms of the GNU General
|
|
% Public License - see the file COPYING in the Mercury distribution.
|
|
%----------------------------------------------------------------------------%
|
|
%
|
|
% This package contains the modules that make up the output phase
|
|
% of the LLDS backend.
|
|
%
|
|
%----------------------------------------------------------------------------%
|
|
|
|
:- module ll_backend.llds_out.
|
|
:- interface.
|
|
|
|
:- include_module llds_out_file.
|
|
:- include_module llds_out_global.
|
|
:- include_module llds_out_instr.
|
|
:- include_module llds_out_data.
|
|
:- include_module llds_out_code_addr.
|
|
:- include_module llds_out_util.
|
|
|
|
%---------------------------------------------------------------------------%
|
|
:- end_module ll_backend.llds_out.
|
|
%---------------------------------------------------------------------------%
|