Rename meta/target -> meta/isa.

Clarify terminology by always referring to a 'Target ISA' instead of just
'Target'. Use 'isa' as a module name instead of 'target' both in Rust and Python
code.

This is only to clarify terminology and not at all because Cargo insists on
using the 'target' sub-directory for build products. Oh, no. Not at all.
This commit is contained in:
Jakob Stoklund Olesen
2016-08-04 11:50:19 -07:00
parent c47c524017
commit 92f84c655b
11 changed files with 54 additions and 54 deletions

View File

@@ -299,17 +299,17 @@ Targets
=======
Cretonne can be compiled with support for multiple target instruction set
architectures. Each ISA is represented by a :py:class:`cretonne.Target` instance.
architectures. Each ISA is represented by a :py:class:`cretonne.TargetISA` instance.
.. autoclass:: Target
.. autoclass:: TargetISA
The definitions for each supported target live in a package under
:file:`meta/target`.
:file:`meta/isa`.
.. automodule:: target
.. automodule:: isa
:members:
.. automodule:: target.riscv
.. automodule:: isa.riscv
Glossary