From 2d2015144653ffdf597df5a9f24e78a1d11941b0 Mon Sep 17 00:00:00 2001 From: pierre Date: Thu, 24 Oct 2019 15:28:47 +0000 Subject: [PATCH] Change parent class of trv32aatreader to trvattreader git-svn-id: trunk@43309 - --- compiler/riscv32/rarv32gas.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/riscv32/rarv32gas.pas b/compiler/riscv32/rarv32gas.pas index 7802e21b38..638070acd0 100644 --- a/compiler/riscv32/rarv32gas.pas +++ b/compiler/riscv32/rarv32gas.pas @@ -26,10 +26,10 @@ Unit rarv32gas; Interface uses - raatt,rarv32; + raatt,rarv32,rarvgas; type - trv32attreader = class(tattreader) + trv32attreader = class(trvattreader) function is_register(const s: string): boolean; override; function is_asmopcode(const s: string):boolean;override; procedure handleopcode;override;