diff options
author | Michael Clark <mjc@sifive.com> | 2018-04-10 12:29:01 +1200 |
---|---|---|
committer | Palmer Dabbelt <palmer@sifive.com> | 2018-10-17 13:02:14 -0700 |
commit | df354dd41064491342c2f1b5d4743eed40f0fa27 (patch) | |
tree | ffb0e2308d1a6edbe5396067d37de8b15cf099ba /target/riscv/Makefile.objs | |
parent | 85ba724fd6ad51360d61045476fd96d25dc15b9a (diff) | |
download | qemu-df354dd41064491342c2f1b5d4743eed40f0fa27.zip qemu-df354dd41064491342c2f1b5d4743eed40f0fa27.tar.gz qemu-df354dd41064491342c2f1b5d4743eed40f0fa27.tar.bz2 |
RISC-V: Move non-ops from op_helper to cpu_helper
This patch makes op_helper.c contain only instruction
operation helpers used by translate.c and moves any
unrelated cpu helpers into cpu_helper.c. No logic is
changed by this patch.
Signed-off-by: Michael Clark <mjc@sifive.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Palmer Dabbelt <palmer@sifive.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'target/riscv/Makefile.objs')
-rw-r--r-- | target/riscv/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv/Makefile.objs b/target/riscv/Makefile.objs index abd0a7c..fcc5d34 100644 --- a/target/riscv/Makefile.objs +++ b/target/riscv/Makefile.objs @@ -1 +1 @@ -obj-y += translate.o op_helper.o helper.o cpu.o fpu_helper.o gdbstub.o pmp.o +obj-y += translate.o op_helper.o cpu_helper.o cpu.o fpu_helper.o gdbstub.o pmp.o |