|
From: <sv...@va...> - 2014-10-07 21:57:12
|
Author: florian
Date: Tue Oct 7 22:57:05 2014
New Revision: 2968
Log:
Remove unused prototype. Add a fixs390.
Modified:
trunk/priv/host_s390_defs.h
trunk/priv/main_main.c
Modified: trunk/priv/host_s390_defs.h
==============================================================================
--- trunk/priv/host_s390_defs.h (original)
+++ trunk/priv/host_s390_defs.h Tue Oct 7 22:57:05 2014
@@ -741,7 +741,6 @@
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);
Modified: trunk/priv/main_main.c
==============================================================================
--- trunk/priv/main_main.c (original)
+++ trunk/priv/main_main.c Tue Oct 7 22:57:05 2014
@@ -393,6 +393,7 @@
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;
|