From: Florian Krohm Date: Tue, 7 Oct 2014 21:57:05 +0000 (+0000) Subject: Remove unused prototype. Add a fixs390. X-Git-Tag: svn/VALGRIND_3_11_0^2~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f26f066f60b2a04343c10d533d72a6de1289bbb5;p=thirdparty%2Fvalgrind.git Remove unused prototype. Add a fixs390. git-svn-id: svn://svn.valgrind.org/vex/trunk@2968 --- diff --git a/VEX/priv/host_s390_defs.h b/VEX/priv/host_s390_defs.h index 4884c5b129..73f7367733 100644 --- a/VEX/priv/host_s390_defs.h +++ b/VEX/priv/host_s390_defs.h @@ -741,7 +741,6 @@ Int emit_S390Instr ( Bool *, UChar *, Int, s390_insn *, Bool, void getAllocableRegs_S390( Int *, HReg **, Bool ); void genSpill_S390 ( HInstr **, HInstr **, HReg , Int , Bool ); void genReload_S390 ( HInstr **, HInstr **, HReg , Int , Bool ); -s390_insn *directReload_S390 ( s390_insn *, HReg, Short ); HInstrArray *iselSB_S390 ( IRSB *, VexArch, VexArchInfo *, VexAbiInfo *, Int, Int, Bool, Bool, Addr64); diff --git a/VEX/priv/main_main.c b/VEX/priv/main_main.c index 98ab2d213d..49e644ccc3 100644 --- a/VEX/priv/main_main.c +++ b/VEX/priv/main_main.c @@ -393,6 +393,7 @@ VexTranslateResult LibVEX_Translate ( VexTranslateArgs* vta ) mapRegs = (void(*)(HRegRemap*,HInstr*, Bool)) mapRegs_S390Instr; genSpill = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genSpill_S390; genReload = (void(*)(HInstr**,HInstr**,HReg,Int,Bool)) genReload_S390; + // fixs390: consider implementing directReload_S390 ppInstr = (void(*)(HInstr*, Bool)) ppS390Instr; ppReg = (void(*)(HReg)) ppHRegS390; iselSB = iselSB_S390;